SaveChangesOptions Enum

Definition

Indicates change options when SaveChanges() is called.

This enumeration supports a bitwise combination of its member values.

public enum class SaveChangesOptions
[System.Flags]
public enum SaveChangesOptions
[<System.Flags>]
type SaveChangesOptions = 
Public Enum SaveChangesOptions
Inheritance
SaveChangesOptions
Attributes

Fields

Batch 1

All pending changes are saved in a single batch request.

ContinueOnError 2

Pending changes are saved by using multiple requests to the server, and the operation continues after an error occurs.

None 0

Pending changes are saved by using multiple requests to the server, but the operation stops on the first failure (default).

ReplaceOnUpdate 4

Pending updates are made by replacing all values of the entity in the data source with values from the updated entity (HTTP PUT) instead of just updating changed values (HTTP MERGE), which is the default behavior.

Remarks

When the ContinueOnError option is set, subsequent operations are still tried even after an error occurs.

When batching is not used, the DataServiceResponse.BatchHeaders property returns an empty collection, and the DataServiceResponse.BatchStatusCode property is zero.

You cannot set both Batch and ContinueOnError at the same time.

Applies to

See also