Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any differences when doing the following:

public class UsersContext : DbContext
{
    public DbSet<User> Users { get; set; }
}

versus using the Set<T> method of the context:

public class UsersContext : DbContext
{
}

var db = new UsersContext();
var users = db.Set<User>();

These effectively do the same thing, giving me a set of Users, but are there any big differences other than you are not exposing the set through a property?

share|improve this question
@abatishchev msdn.microsoft.com/en-us/library/gg696521(v=vs.103).aspx Nope there is a Set<T> method – Dismissile Dec 4 '12 at 20:14
Sure, thanks, silly me :) – abatishchev Dec 4 '12 at 20:46

4 Answers

up vote 2 down vote accepted

The Users property is added for convenience, so you don't need to remember what all of your tables are and what the corresponding class is for it, you can use Intellisense to see all of the tables the context was designed to interact with. The end result is functionally equivalent to using Set<T>.

share|improve this answer

You get a benefit with the former method when using Code-First migrations, as new entities will be detected as such automatically. Otherwise, I'm quite certain they are equivalent.

share|improve this answer
I did not think of migrations! – Dismissile Dec 4 '12 at 20:07

This is how I set my generic dbSet, works just fine

DbContext context = new MyContext();
DbSet<T> dbSet = context.Set<T>();

It is the generic version of something more explicit, such as

DbContext context = new MyContext();
DbSet<User> dbSet = context.Set<User>();

Either way, they are the same (when T is User)

share|improve this answer
Err...okay? I understand how it works. I wanted to know what the differences / limitations are. – Dismissile Dec 4 '12 at 20:10
1  
@Dismissile - No limitations or differences, except that you might save yourself some repeating code by using the generic definition and passing in the type. – Travis J Dec 4 '12 at 20:10

i think there is no such difference between two approach except that Set<User>() is more suitable for implementing data access patterns like Repository patternt because generic behavior of Set<T> method.

share|improve this answer
Yeah I understand where they have their uses for a generic repository, but I was curious if there were any downsides to it. – Dismissile Dec 4 '12 at 20:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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