/Oskar
2010/6/24 Kakone <stepht...@gmail.com>:
> --
> You received this message because you are subscribed to the Google Groups "nhusers" group.
> To post to this group, send email to nhu...@googlegroups.com.
> To unsubscribe from this group, send email to nhusers+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
>
>
session.QueryOver<Project>().Left.JoinQueryOver(p => p.Type).OrderBy(p => p.Type.Label).Take(...);
session.QueryOver<Project>().Left.JoinQueryOver(p => p.Type).OrderBy(t => t.Label).Asc
var obj = from p in Session.Query<Project>()
join t in Session.Query<Type>() on p.Type equals
t into mygroup
from item in mygroup.DefaultIfEmpty()
orderby item.Label
select o;
http://msdn.microsoft.com/en-us/library/bb397895.aspx
http://msdn.microsoft.com/en-us/vbasic/bb737929.aspx#grpjoinleftout
http://msdn.microsoft.com/en-us/library/bb311040.aspx
/Oskar
2010/6/24 Diego Mijelshon <di...@mijelshon.com.ar>: