DbUpdateConcurrencyException Constructors

Definition

Overloads

DbUpdateConcurrencyException()

Initializes a new instance of the DbUpdateException class.

DbUpdateConcurrencyException(String)

Initializes a new instance of the DbUpdateException class.

DbUpdateConcurrencyException(String, Exception)

Initializes a new instance of the DbUpdateException class.

DbUpdateConcurrencyException()

Initializes a new instance of the DbUpdateException class.

public DbUpdateConcurrencyException ();
Public Sub New ()

Applies to

DbUpdateConcurrencyException(String)

Initializes a new instance of the DbUpdateException class.

public DbUpdateConcurrencyException (string message);
new System.Data.Entity.Infrastructure.DbUpdateConcurrencyException : string -> System.Data.Entity.Infrastructure.DbUpdateConcurrencyException
Public Sub New (message As String)

Parameters

message
String

The message.

Applies to

DbUpdateConcurrencyException(String, Exception)

Initializes a new instance of the DbUpdateException class.

public DbUpdateConcurrencyException (string message, Exception innerException);
new System.Data.Entity.Infrastructure.DbUpdateConcurrencyException : string * Exception -> System.Data.Entity.Infrastructure.DbUpdateConcurrencyException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message.

innerException
Exception

The inner exception.

Applies to