ConflictOption 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.
Specifies how conflicting changes to the data source will be detected and resolved.
public enum class ConflictOption
public enum ConflictOption
type ConflictOption =
Public Enum ConflictOption
- Inheritance
Fields
Name | Value | Description |
---|---|---|
CompareAllSearchableValues | 1 | Update and delete statements will include all searchable columns from the table in the WHERE clause. This is equivalent to specifying |
CompareRowVersion | 2 | If any Timestamp columns exist in the table, they are used in the WHERE clause for all generated update statements. This is equivalent to specifying |
OverwriteChanges | 3 | All update and delete statements include only PrimaryKey columns in the WHERE clause. If no PrimaryKey is defined, all searchable columns are included in the WHERE clause. This is equivalent to |