Enum JoinType
Type of JOIN operation.
public enum JoinType
- Extension Methods
Fields
Auto = 0Don't use this type. It defines intermediate join type calculated by SelectManyBuilder and shouldn't be used outside of this class.
Cross = 3CROSS JOIN.
CrossApply = 4CROSS APPLY.
Full = 7FULL (OUTER) JOIN.
FullApply = 9Intermediate fake JOIN type, added by SelectManyBuilder and replaced with real type in query optimizer.
Inner = 1INNER JOIN. Also represents CROSS JOIN when join conditions not set.
Left = 2LEFT (OUTER) JOIN.
OuterApply = 5OUTER APPLY.
Right = 6RIGHT (OUTER) JOIN.
RightApply = 8Intermediate fake JOIN type, added by SelectManyBuilder and replaced with real type in query optimizer.