RefreshMode Enum

Definition

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
RefreshMode

Fields

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.

StoreWins 1

Property changes made to objects in the object context are replaced with values from the data source.

Examples

Saving Changes and Managing Concurrency

How to: Manage Data Concurrency in the Object Context

Applies to