LoadOption Enum

Definition

Controls how the values from the data source will be applied to existing rows when using the Load or Load method.

public enum class LoadOption
public enum LoadOption
type LoadOption = 
Public Enum LoadOption
Inheritance
LoadOption

Fields

OverwriteChanges 1

The incoming values for this row will be written to both the current value and the original value versions of the data for each column.

PreserveChanges 2

The incoming values for this row will be written to the original value version of each column. The current version of the data in each column will not be changed. This is the default.

Upsert 3

The incoming values for this row will be written to the current version of each column. The original version of each column's data will not be changed.

Applies to