ChangeTrackingStrategy Enum
.NET Standard 2.x
Defines the tracking strategies for a model object.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Syntax
public enum ChangeTrackingStrategy
Members
| Member name | Description |
|---|---|
| NotTrack | (Default) Not to track. |
| Snapshot | Compares the original value with the current value of the property, to determine whether the data in the model (row) has changed. |
| PropertyState | Uses the tracked property state, to determine whether the data in the model (row) has changed. |