Explicit loading of grandchild collections in EF 4.1
问题 Given the following model ... public class Parent { public int Id { get; set; } public ICollection<Child> Children { get; set; } } public class Child { public int Id { get; set; } public ICollection<Grandchild> Grandchildren { get; set; } } public class Grandchild { public int Id { get; set; } } ... we can eager load with Include a Parent with all Children and Grandchildren in one step like so: context.Parents.Include(p => p.Children.Select(c => c.Grandchildren)) Is something similar possible