Enum MergeMode
- Namespace
- Datafication.Core.Data
- Assembly
- Datafication.Core.dll
Specifies the merge modes available for merging DataBlocks.
public enum MergeMode
Fields
Full = 2Includes all rows from both DataBlocks, filling in nulls where no match is found.
Inner = 3Includes only rows with matching keys in both DataBlocks.
Left = 0Includes all rows from the left DataBlock and matching rows from the right DataBlock.
Right = 1Includes all rows from the right DataBlock and matching rows from the left DataBlock.