SaveOptions Enum

Definition

Flags used to modify behavior of ObjectContext.SaveChanges()

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum SaveOptions
type SaveOptions = 
Public Enum SaveOptions
Inheritance
SaveOptions
Attributes

Fields

AcceptAllChangesAfterSave 1

After changes are saved, the AcceptAllChangesAfterSave method is called, which resets change tracking in the ObjectStateManager.

DetectChangesBeforeSave 2

Before changes are saved, the DetectChanges method is called to synchronize the property values of objects that are attached to the object context with data in the ObjectStateManager.

None 0

Changes are saved without the DetectChanges or the AcceptAllChangesAfterSave methods being called.

Applies to