RefreshMode Enumeration
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Defines how the Refresh method handles optimistic concurrency conflicts.
Assembly: System.Data.Linq (in System.Data.Linq.dll)
| Member name | Description | |
|---|---|---|
| KeepCurrentValues | Forces the Refresh method to swap the original value with the values retrieved from the database. No current value is modified. | |
| KeepChanges | Forces the Refresh method to keep the current value that has been changed, but updates the other values with the database values. | |
| OverwriteCurrentValues | Forces the Refresh method to override all the current values with the values from the database. |
This enumeration applies to all Refresh overloads.
Show: