Left Outer Join on Many-to-One Mapping
        Posted  
        
            by Colin Bowern
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Colin Bowern
        
        
        
        Published on 2010-04-05T13:28:37Z
        Indexed on 
            2010/04/05
            13:33 UTC
        
        
        Read the original article
        Hit count: 313
        
nhibernate
|nhibernate-mapping
I have a reference to call that may or may not be there. When I add the nullable option it still doing Inner Join when I want an Outer Left Join (show the left even if the right is null). Is this possible in the NH map?
References(x => x.DefaultCategory, "CATEGORY_ID")
    .Nullable();
        © Stack Overflow or respective owner