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

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?

share|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

1 Answer

up vote 18 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.

share|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
@Slauma Yes, but the chained select must be the only item the firsrt select. You cannot select a single entity and a collection at the same time. Bad e.g.: .Include(x => x.BCollection.Select(b => new { b.ChildEntity, b.CCollection.Select(c => c.DCollection) })) – Kurian Mar 29 at 5:11

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.