vote up 3 vote down star
1

In my ASP.NET application I want to implement by data acess layer using the Entity framweok so I can use it as an ORM tool. But I dont want the rest of the application to care that I'm using this or be polluted by anything entity frameowrk specific.

I cant seem to find anyone who is using the entity framework exclusively in their Data access layer so I'm keen to see any online examples of this/ experience people have.

flag

73% accept rate

4 Answers

vote up 1 vote down

I have used Entity Framework as the data access on my last two projects. These are large (for me atleast) projects with several hundred tables, 5-15 developers lasting over a year.

In both projects we have a WCF interface into our service layer. We did not want to use the Entity Framework objects in our WCF Contracts. We therefore created Data Transfer Objects, and we map between DTO's and Entity Framework objects.

This breaks up the dependencies and keeps the contracts as stable as possible, but creates some extra work.

Depending on your time horizon I would do it like this or use the POCO objects in the next version, as Kieth mentioned.

link|flag
vote up 1 vote down

http://blog.keithpatton.com/2009/05/30/Entity+Framework+POCO+Repository+Using+Visual+Studio+2010+Net+40+Beta+1.aspx

this is DDD inspired architecture i've just worked up with EF v4 which uses Unity IoC to inject an EF repository, hope that helps

link|flag
vote up 1 vote down

You could abstract the entity framework using something like the repository pattern like ScottGu does with Linq in the NerdDinner series.

http://nerddinnerbook.s3.amazonaws.com/Part3.htm

link|flag
vote up 2 vote down

http://ayende.com/Blog/archive/2007/06/08/Rhino-Commons-RepositoryltTgt-and-Unit-Of-Work.aspx

Look at the above example, you can implement entity framework in the same fashion using repository pattern

link|flag

Your Answer

Get an OpenID
or

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