In OOP Design Patterns, what is the difference between the Repository Pattern and a Service Layer?
I am working on an ASP.NET MVC 3 app, and am trying to understand these design patterns, but my brain is just not getting it...yet!!
|
In OOP Design Patterns, what is the difference between the Repository Pattern and a Service Layer? I am working on an ASP.NET MVC 3 app, and am trying to understand these design patterns, but my brain is just not getting it...yet!!
| |||
|
feedback
|
|
Repository Layer gives you additional level of abstraction over data access. Instead of writing
to get single item from database, you use repostiory interface
and call Service layer exposes business logic, which uses repository. Example service could look like:
While In ASP.NET MVC + EF + SQL SERVER, I have this flow of communication:
EDIT: Example of flow for /Orders/ByClient/5 (we want to see order for specific client):
This is interface for order service:
This interface returns view model:
This is interface implementation. It uses model classes and repository to create view model:
| |||||||||||||||||||||
feedback
|
|
As Carnotaurus said the repository is responsible for mapping your data from the storage format to you business objects. It should handle both how to read and write data(delete, update too) from and to the storage. The purpose of service layer on the other hand is to encapsulate business locig into a single place to promote code reuse and separations of concerns. What this typically means for me in practice when building Asp.net MVC sites is that I have this structure [Controller] calls [Service(s)] who calls [repository(ies)] One principle I have found useful is to keep logic to a minimum in controllers and repositories. In controllers it is because it helps keeping me DRY. It's very common that I need to use the same filtering or logic somewhere else and if I placed it in the controller I can't reuse it. In repositories it is because I want to be able to replace my storage(or ORM) when something better comes along. And if I have logic in the repository I need to rewrite this logic when I change the repository. If my repository only returns IQueryable and the service does the filtering on the other hand, I will only need to replace the mappings. For example I recently replaced several of my Linq-To-Sql repositories with EF4 and those where I had stayed true to this principle could replaced in a matter of minutes. Where I had some logic it was a matter of hours instead. | ||||
|
feedback
|
|
Usually a repository is used as scaffolding to populate your entities - a service layer would go out and source a request. It is likely that you would put a repository under your service layer. | |||||||||||
feedback
|