SyntaxFix
Write A Post
Hire A Developer
Questions
How do you construct a LINQ to Entities query to load child objects directly, instead of calling a Reference property or Load()
There is no other way - except implementing lazy loading.
Or manual loading....
myobj = context.MyObjects.First(); myobj.ChildA.Load(); myobj.ChildB.Load(); ...