As i dig deeper in to the DbContext, DbSet and associated interfaces, I am wondering why you would need to implement a seperate "Generic" Repository around these implementations?

It looks like DbContext and IDbSet do everything you need and include the "Unit Of Work" inside DbContext.

Am I missing something here or does it seem people enjoy adding another layer of dependency for no reason.

link|improve this question

8  
+1 for mentioning my name in the title. – WTP'-- Jun 7 '11 at 17:10
feedback

3 Answers

up vote 101 down vote accepted

You are actually right. DbContext is implementation of unit of work pattern and IDbSet is implementation of repository pattern.

Repositories are currently very popular and overused. Everybody use them just because there are dozens of articles about creating repository for entity framework but nobody actually describes challenges related to this decision.

Main reasons for using repository are usually:

  • Hide EF from upper layer
  • Make code better testable

The first reason is some kind of architectonic purity and great idea that if you make your upper layers independent on EF you can later on switch to other persistence framework. How many times did you see such thing in the real world? This reason makes working with EF much harder because your repository must expose a lot of additional features wrapping what EF allows by default.

In the same time wrapping EF code can keep your code better organized and following Separation of concern rule. For me this can be the only real advantage of repository and unit of work but you have to understand that following this rule with EF will maybe make your code better maintainable and better readable but in the initial effort to create your application will be much higher and for smaller applications this can be unnecessary complexity.

The second reason is partially correct. The big disadvantage of EF is rigid architecture which can be hardly mocked so if you want to unit test upper layer you must wrap EF somehow to allow mocking its implementation. But this has many other consequences which I described here.

I follow Ayende's blog. If you ever used NHibernate you probably know his articles. This guy recently wrote several articles against using repository with NHibernate but NHibernate is much better mockable.

link|improve this answer
2  
Thanks for your reply, and yes Ayende's blog posts are greatness. – Code Jammr Apr 11 '11 at 20:21
So if you wanted to create mocks for EF I see they give you the IDbSet interface. It looks like a bunch of work to create fakes but once you got it done it would be a great piece of reusable code. – Code Jammr Apr 11 '11 at 20:23
You can mock IDbSet you can also define custom interface in your derived context but thats all. Once your code uses ChangeTracker, Entries or what ever else it will require big effort to wrap them all. – Ladislav Mrnka Apr 11 '11 at 20:25
As this technology gets more mature we will start seeing some stuff comitted to take care of this headache for us. I am just studying the EF 4.1 stuff for a project. I was told it was "the way to roll". It looks fairly straightforward, but the performance is terrible. Ahh the sacrifice for performance over features. – Code Jammr Apr 11 '11 at 20:31
2  
If I'm using DbSet and BdContext straight out there in my business layer I have to reference EntityFramework.dll there as well as in my DataLayer project. That alone tells me that it needs some sort of wrapping. – Ingó Vals Oct 3 '11 at 10:30
show 5 more comments
feedback

I am struggling with the same issues, and mockability for unit testing of the EF layers is important. But I ran across this great article which explains how to set up the EF 4.1 DbContext to be mockable by making sure your derived DbContext implemented a generic interface and exposes IDbSet rather than DbSet's. Since I am using a Database First approach, because our database already exists, I simply modified the T4 templates used to generate my derived DbContext to generate it to return IDbSet interfaces, as well as derive from my generic interface. That way the entire thing can be easily mocked, and you don't need to implement your own Unit Of Work or repository pattern. Just write your service code to consume your generic interface, and when you go to unit test it, just mock the generic interface with specific test data and you are good to go.

http://refactorthis.wordpress.com/2011/05/31/mock-faking-dbcontext-in-entity-framework-4-1-with-a-generic-repository/

link|improve this answer
feedback

One reason for creating the repository is so you can hide the implementation of DBSet and DbContext if you decide to move from EntityFramework to something else or vice versa.

For example, I was using NHibernate and I wrapped all of the calls to that framework inside my repository classes. They return IEnumerable for their gets to be "generic" and my repositories have the standard CRUD operations (update, delete, etc). I have long since moved to Entity Framework. Upon doing so, I did not need to change anything in my ViewModel classes or beyond because they pointed to my repository--I only needed to change the inside of my repository. This made life much easier when migrating.

(I used NHibernate because we are connecting to the ISeries, and at the time, there were no cost affective implementations using EF with the ISeries. The only one available was to pay $12,000 to IBM for their DB2Connect)

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.