Join Type Enumeration
Enumerates the possible ways of joining two indexes.
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum JoinType
Members
Outer | 0 | Perform an outer join, where every entry that is included in either index is included in the result. |
Inner | 1 | Perform an inner join, where every entry that is included in both indexes is included in the result. |
Left | 2 | Perform a left join, where every entry that is included in the left operand is included in the result. |
Right | 3 | Perform a right join, where every entry that is included in the right operand is included in the result. |