ConflictMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies when concurrency conflicts should be reported.
public enum class ConflictMode
public enum ConflictMode
type ConflictMode =
Public Enum ConflictMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
FailOnFirstConflict | 0 | Specifies that attempts to update the database should stop immediately when the first concurrency conflict error is detected. |
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. |
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.