DbUpdateConcurrencyException Constructors   
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.
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.