LoadOption 열거형
정의
public enum class LoadOption
public enum LoadOption
type LoadOption =
Public Enum LoadOption
- 상속
필드
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. |