LoadOption Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public enum class LoadOption
public enum LoadOption
type LoadOption =
Public Enum LoadOption
- Inheritance
Fields
Name | Value | Description |
---|---|---|
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. |