I’ve got complex object graph, and I need pretty simple thing I want, using by LINQ, select projections of masters + details (with own projections) select projections of masters I can do using by select(k => new Foo(Prop = k.Prop, …, …)) but what to do next? Fetch + ToFuture is limited enough (at least when I try use it like previous select(….).Fetch() it’ll get exception, and there we have no detail projections
If I’m using ICriteria, I can set projections(I’m not absolutely sure that part of them relate to details, not to master) with aliases, and I saw correct Cartesian sql querry like select master.A, master.B, detail.A, … left outer join …; but ResultTransformer (AliasToBean for example) cann’t satisfy me cause it can’t make details IList… LINQ is cool stuff, and if we can make both horizontal and vertical projections, it’ll be great! I want to ask you as the creator =)), is it possible? Thank you, waiting for your answer.. -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
