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, especially since PrefetchPaths seem to be overly difficult and unintuitive to put together compared to Relations.
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 to reference all tables, but only provide the data from the first table.