ConflictMode Enum

Definition

Specifies when concurrency conflicts should be reported.

public enum class ConflictMode
public enum ConflictMode
type ConflictMode = 
Public Enum ConflictMode
Inheritance
ConflictMode

Fields

ContinueOnConflict 1

Specifies that all updates to the database should be tried, and that concurrency conflicts should be accumulated and returned at the end of the process.

FailOnFirstConflict 0

Specifies that attempts to update the database should stop immediately when the first concurrency conflict error is detected.

Examples

db.SubmitChanges(ConflictMode.FailOnFirstConflict)  
db.SubmitChanges(ConflictMode.FailOnFirstConflict);  
Northwnd db = new Northwnd("...");

// Create, update, delete code.

db.SubmitChanges(ConflictMode.FailOnFirstConflict);
// or
db.SubmitChanges(ConflictMode.ContinueOnConflict);
Dim db As New Northwnd("...")

' Create, update, delete code.

db.SubmitChanges(ConflictMode.FailOnFirstConflict)
' or
db.SubmitChanges(ConflictMode.ContinueOnConflict)

Applies to