Click or drag to resize
JoinHint Enumeration
Enum definition for the hint specified in the Add method of RelationCollection.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public enum JoinHint
Members
  Member nameValueDescription
None0 No hint specified. Use INNER unless ObeyWeakRelations is set to true.
Inner1 Inner join between start and end entity of given relation Overrules the set ObeyWeakRelations flag for this relation.
Left2 Hints a LEFT join between start and end entity in relation. Overrules the set ObeyWeakRelations flag for this relation.
Right3 Hints a RIGHT join between start and end entity in relation. Overrules the set ObeyWeakRelations flag for this relation.
Cross4 Hints a CROSS join between start and end entity in relation. Overrules the set ObeyWeakRelations flag for this relation.
Full5 Hits a FULL join between start and end entity in relation. Overrules the set ObeyWeakRelations flag for this relation. Full joins may not be supported by all databases.
See Also