LoadOption Enum
Definition
public enum class LoadOption
public enum LoadOption
type LoadOption =
Public Enum LoadOption
- Inheritance
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. |