MergeOption Enum

Definition

Used to specify a value synchronization strategy.

public enum MergeOption
type MergeOption = 
Public Enum MergeOption
Inheritance
MergeOption

Fields

AppendOnly 0

No current values are modified.

NoTracking 3

Equivalent to System.Data.Objects.MergeOption.NoTracking

OverwriteChanges 1

All current values are overwritten with current store values, regardless of whether they have been changed.

PreserveChanges 2

Current values that have been changed are not modified, but any unchanged values are updated with the current store values. No changes are lost in this merge.

Remarks

Equivalent to System.Data.dll!System.Data.LoadOption Equivalent to System.Data.Linq.dll!System.Data.Linq.RefreshMode Equivalent to System.Data.Entity.dll!System.Data.Objects.MergeOption

Applies to