If I have the following class model ...

public class A
{
    public int AId { get; set; }
    public ICollection<B> BCollection { get; set; }
}

public class B
{
    public int BId { get; set; }
    public ICollection<C> CCollection { get; set; }
}

public class C
{
    public int CId { get; set; }
}

... is it possible to eager-load an object of type A from the database with all cascading collections included?

I can include the BCollection like so:

A a = context.ASet.Where(x => x.AId == 1)
          .Include(x => x.BCollection)
          .FirstOrDefault();

Can I also include somehow the CCollection of all loaded B objects so that I get A with all dependent objects in memory with a single database query?

link|improve this question

I started this question on meta: meta.stackoverflow.com/questions/85358/… It is related to our previous communication about version specific tags in EF. – Ladislav Mrnka Mar 30 '11 at 19:30
@Ladislav: OK, I'll watch this. Let's see how the veterans think about it. – Slauma Mar 30 '11 at 20:05
feedback

1 Answer

up vote 12 down vote accepted

Use .Include(x => x.BCollection.Select(b => b.CCollection)) also described here.

It works also for cascade. Every time you need to eager load navigation property which is collection use .Select.

link|improve this answer
Thanks! And for even deeper hierarchies I simply chain the Selects, like so: .Include(x => x.BCollection.Select(b => b.CCollection.Select(c => c.DCollection))), right? – Slauma Mar 21 '11 at 15:14
feedback

Your Answer

 
or
required, but never shown

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