Enum JoinType
- Namespace
- Utils.Collections
- Assembly
- Utils.dll
Specifies the type of join operation.
[Flags]
public enum JoinType
- Extension Methods
Fields
FullOuterJoin = LeftJoin | RightJoinIncludes every element from both sequences, regardless of whether a counterpart exists.
InnerJoin = 0Returns only elements that appear in both sequences.
LeftJoin = 1Includes all elements from the left sequence, pairing them with matching right elements when available.
RightJoin = 2Includes all elements from the right sequence, pairing them with matching left elements when available.