OQL.NET supports Join, Inner Join, Left Join, Right Join, Cross Join and Full Join.
Join( object | string, Join Type )
Join(NW.Customer, JoinType.InnerJoin)
Join( object | string )
Join(NW.Customer)
InnerJoin( object | string )
InnerJoin(NW.Customer)
LeftJoin( object | string )
LeftJoin(NW.Customer)
RightJoin( object | string )
RightJoin(NW.Customer)
CrossJoin( object | string )
CrossJoin(NW.Customer)
FullJoin( object | string )
FullJoin(NW.Customer)
Related Topics