Say I have an LLBLGen GetMulti expression using Related entities:
Dim customers as New CustomerCollection
dim ordersRel as New RelationCollection
ordersRel.Add(CustomerEntity.Relations.OrderEntityByOrderID)
customers.GetMulti(OrderFields.TotalCost > 100, Nothing, Nothing, ordersRel)
Is it possible for the generated GetMulti query to include all matching Order entities as well as the Customer in the result set (such that, in this example, any CustomerEntities returned automatically have their "Orders" property populated with the matching orders without doing any lazy loading), without using a PrefetchPath? I'd rather not have to duplicate all the relations and logic in the relations with corresponding prefetchpaths as well.
Right now, looking at the query generated, it does Customers JOIN Orders, but the select only returns the fields from Customers. It seems like it would be kind of silly to do the join, but not provide a way to access the returned data.