System.Data.ConflictOption Enumeration

Specifies how conflicting changes to the data source will be detected and resolved.

Syntax

public enum ConflictOption

Remarks

Documentation for this section has not yet been entered.

Members

Member NameDescription
CompareAllSearchableValues

Update and delete statements will include all searchable columns from the table in the WHERE clause. This is equivalent to specifying CompareAllValuesUpdate | CompareAllValuesDelete.

CompareRowVersion

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 CompareRowVersionUpdate | CompareRowVersionDelete.

OverwriteChanges

All update and delete statements include only DataTable.PrimaryKey columns in the WHERE clause. If no DataTable.PrimaryKey is defined, all searchable columns are included in the WHERE clause. This is equivalent to OverwriteChangesUpdate | OverwriteChangesDelete.

Requirements

Namespace: System.Data
Assembly: System.Data (in System.Data.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0