DbUpdateException Constructors

Definition

Overloads

DbUpdateException()

Initializes a new instance of the DbUpdateException class.

DbUpdateException(String)

Initializes a new instance of the DbUpdateException class.

DbUpdateException(String, Exception)

Initializes a new instance of the DbUpdateException class.

DbUpdateException()

Initializes a new instance of the DbUpdateException class.

public DbUpdateException ();
Public Sub New ()

Applies to

DbUpdateException(String)

Initializes a new instance of the DbUpdateException class.

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

Parameters

message
String

The message.

Applies to

DbUpdateException(String, Exception)

Initializes a new instance of the DbUpdateException class.

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

Parameters

message
String

The message.

innerException
Exception

The inner exception.

Applies to