RefreshMode 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 whether property changes made to objects tracked by Object Services are kept or replaced with property values from the data source.
public enum class RefreshMode
public enum RefreshMode
type RefreshMode =
Public Enum RefreshMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
StoreWins | 1 | Property changes made to objects in the object context are replaced with values from the data source. |
ClientWins | 2 | Property changes made to objects in the object context are not replaced with values from the data source. On the next call to SaveChanges(), these changes are sent to the data source. |
Examples
Saving Changes and Managing Concurrency
How to: Manage Data Concurrency in the Object Context