UpdateWhereStrategy Enum
.NET Standard 2.x
The strategy of how to create the WHERE clause when the SQL UPDATE statement is generated.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Syntax
public enum UpdateWhereStrategy
Members
Member Name | Remarks |
---|---|
KeyColumns | Uses the primary key only. |
KeyAndConcurrencyCheckColumns | Uses the primary key and the properties which have applied the ConcurrencyCheck attribute. |
KeyAndModifiedColumns | Uses the primary key and the modified properties. |