i have *tableA* and *tableB* tableA has a *B_Id* property.
This query works fine: IEnumerable<A> a = Session.Query<A>().Fetch(r=>r.B); but i want something like: IEnumerable<A> a = Session.Query<A>().Where(r=>r.B.Active).Fetch(r=>r.B); it seems like when i do this, it no longer does a simple outer join and if there are no active records in table B, i get no results. I want to do a pure outerjoin that will still give me results but with the B fields as null. Does nhibernate LINQ support this ability to put a where clause on your outerjoined table?? -- 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.
