I have a query which is something like this:

Session.CreateSQLQuery(
    @"SELECT f.*, b.*, z.* FROM Foo f
     LEFT OUTER JOIN Bar b ON b.Id = f.BarId
     LEFT OUTER JOIN Zar z ON z.Id = b.ZarId"
     )
    .AddEntity("f", typeof(Foo))
    .AddJoin("b", "f.BarId")
    .AddJoin("z", "b.ZarId")
    .List<Foo>();

The problem is that I am still getting hundreds of SELECT requests made to the Zar table, even though I have specified that Zar should be joined.

As far as I am aware the only relationship is Foo->Bar->Zar, i.e. the reference to Zar is not occurring anywhere else.

Is my understanding of AddJoin correct? What could be going wrong?

link|improve this question

64% accept rate
Is this a typo? In the line .AddJoin("z", "f.ZarId") shouldn't it be b.ZarId? – Stefan Steinegger May 7 '10 at 9:30
Thank you, yes that was a typo. Problem remains. – cbp May 10 '10 at 2:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.