I would be grateful if you could help me to solve the problem.Im tring to impliment LINQ to Entity using Include extension.
I'm have the following scheme:

Here is my first LINQ(its work properly):
var query = ctx1.Order_Details.Include("Order").Select( o => new
{ o.OrderID,
o.ProductID,
o.Order.OrderDate,
o.Order.OrderNumber
});
Here is my second LINQ(doesn't work):
My question is why when im implementing Linq on "many to one" relationship LINQ
works properly and when im tring to implement LINQ "inside out" (i.e. one to meny) it doesn't work?
Thank you in advance.