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

Dunno how to name this properly. I have two entities in m:n relationship: Member and Role.

public class Role
{
    public int Id { get; set; }
    public string Title { get; set; }

    public ICollection<Member> MembersInRole { get; set; }
}

public class Member
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Password { get; set; }
    public string Email { get; set; }

    public ICollection<Role> Roles { get; set; }
}

I have made some seed data:

And wrote test:

The problem is, that my Member entity has no roles assigned, even when I created them in context (as you can see at images). I don't know what's wrong. Tables in database seems to be ok. I am not sure if there isn't something wrong with context instances. But it should be ok, becuase I am working with seed data all the time.

share|improve this question

2 Answers

up vote 2 down vote accepted

Try to eager-load the roles by including them explicitly:

Member admin = db.Members.Include("Roles").FirstOrDefault(m => m.Name == "Admin");
share|improve this answer
Thanks, that's a working solution. – Dampe Apr 10 '11 at 10:40

Your MembersRole and Roles navigation properties are not virtual so EF can't crete proxy for lazy loading. Because of that you must explicitely ask EF to load your navigation properties. Either mark your properties as virtual:

public class Role
{
    public int Id { get; set; }
    public string Title { get; set; }

    public virtual ICollection<Member> MembersInRole { get; set; }
}

public class Member
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Password { get; set; }
    public string Email { get; set; }

    public virtual ICollection<Role> Roles { get; set; }
}

Or use @Yakimych approach. The eager loading in EF 4.1 can be also defined with lambdas:

Member admin = db.Members.Include(m => m.Roles)
                         .FirstOrDefault(m => m.Name == "Admin");
share|improve this answer
+1 Thanks for further explanation. I am dumb and actually forgot about this. – Dampe Apr 10 '11 at 10:39
Your are not dumb you are dampe ;P – Elisa Feb 18 at 9:19

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.