Hi
i'm looking to load a list of object with their child graph in subsonic. I know how to do it using linq to sql with dataloadoptions
i have this graph
product - location - prices
new Select().From().Where(Product.Columns.Id).IsEqualTo(productId).ExecuteSingle();
I would like for my product object to preload location and prices, so that they would not lazy load causing many query.
thanks