How can I change the default join type to be an inner join instead of a left outer join for mappings when I use References?

For Example:

public class SomeClassMap : ClassMap<SomeClass>
{
   public SomeClassMap()
   {
     Id(x => Id);
     References(x => x.Account);
   }
}

this usually turns out to be something like this...

FROM SomeClass  SC
LEFT OUTER JOIN Account A 
ON SC.Id = A.Id

I'd like to have this be an inner join instead of a left outer join. Any thoughts?

link|improve this question

60% accept rate
feedback

1 Answer

Similar question here:

Inner or Right Outer Join in Nhibernate and Fluent Nhibernate on Many to Many collection

I'm assuming this also applies to one to many relationships. Someone please chime in if this does not hold true anymore.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.