I am trying to Eagerly load all the related entities or collection of Entity in one call. My Entities Looks like:
Class Person { public virtual long Id {
You can try this:
Context.Employees .Include(e => e.Person) .Include(e => e.Titles.Select(t => t.Title)) .ToList();
Select can be applied to a collection and loads navigation properties of the next level in the object graph.
Select