up vote 2 down vote favorite
share [g+] share [fb]

How to implement Repository pattern withe LinqToEntities how to implement the interface

link|improve this question

71% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I do the following:

A service layer contains my business objects. It is passed the repository via an Inversion of Control (Castle Windor is my usual choice). The repository is in charge of mapping between the business objects and my entity framework objects.

The advantages: You have no problems with object state or the context of the EF objects because you are just loading them during data manipulation on the repository side. This eases the situation when passing them to WCF/Web-Services.

The disadvantages: You are losing some of the tracking functionality of Entity Framework, you have to manually load the data object (ef objects), possibly if required manually to optimistic concurrency checks (via a timestamp on the business object for example).

But generally I prefer this solution, because it is possible to later change the repository. It allows me to have different repositories (for example my user object is actually using the ASPNetAuthenticationRepository instead of the EntityFrameworkRepository) but for my service layer it's transparent.

With regards to the interface, I would use the business objects from the service layer as your parameter objects and don't let those EF objects out of the repository layer. Hope that helps

link|improve this answer
feedback

I´ve almost like this except for the "Castle Windor" stuff. Take a look at openticket.codeplex.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.