Click or drag to resize
LinqUtilsSetProperHintForJoin Method
Sets the proper hint for join in the relation passed in. It will set it to left join if the start entity is the fk side and the fk is nullable it will set it to right join if the end entity is the fk side and the fk is nullable. If the FK side isn't nullable, and it's a 1:1 relationship, the join hint will be towards the PK side: left or right. In all other cases it will stay Inner.

Namespace:  SD.LLBLGen.Pro.LinqSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static void SetProperHintForJoin(
	IEntityRelation relation
)

Parameters

relation
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityRelation
The relation.
See Also