How to implement Repository pattern withe LinqToEntities? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:45:40Z http://stackoverflow.com/feeds/question/54199 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54199/how-to-implement-repository-pattern-withe-linqtoentities 2 How to implement Repository pattern withe LinqToEntities? BigOmar 2008-09-10T14:30:59Z 2009-03-17T09:22:46Z <p>How to implement Repository pattern withe LinqToEntities how to implement the interface </p> http://stackoverflow.com/questions/54199/how-to-implement-repository-pattern-withe-linqtoentities/56337#56337 1 Answer by AlexDuggleby for How to implement Repository pattern withe LinqToEntities? AlexDuggleby 2008-09-11T11:44:13Z 2008-09-11T11:44:13Z <p>I do the following:</p> <p>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.</p> <p>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.</p> <p>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). </p> <p>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.</p> <p>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</p> http://stackoverflow.com/questions/54199/how-to-implement-repository-pattern-withe-linqtoentities/653503#653503 1 Answer by Glenn for How to implement Repository pattern withe LinqToEntities? Glenn 2009-03-17T09:22:46Z 2009-03-17T09:22:46Z <p>I´ve almost like this except for the "Castle Windor" stuff. Take a look at openticket.codeplex.com</p>