Table of Contents

Enum MergeMode

Namespace
Datafication.Core.Data
Assembly
Datafication.Core.dll

Specifies the merge modes available for merging DataBlocks.

public enum MergeMode

Fields

Full = 2

Includes all rows from both DataBlocks, filling in nulls where no match is found.

Inner = 3

Includes only rows with matching keys in both DataBlocks.

Left = 0

Includes all rows from the left DataBlock and matching rows from the right DataBlock.

Right = 1

Includes all rows from the right DataBlock and matching rows from the left DataBlock.