Enum to define join hints for relations in typed lists
Namespace:
SD.LLBLGen.Pro.ApplicationCore
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.9.0.0 (5.9.0)
Syntax Public Enumeration JoinHint
Members
| Member name | Value | Description |
---|
| None | 0 |
No hint specified. Use INNER unless ObeyWeakRelations is set to true.
|
| Inner | 1 |
Inner join between start and end entity of given relation
|
| Left | 2 |
Hints a LEFT join between start and end entity in relation.
|
| Right | 3 |
Hints a RIGHT join between start and end entity in relation.
|
| Cross | 4 |
Hints a CROSS join between start and end entity in relation.
|
See Also