다음을 통해 공유


DbUpdateException 생성자

정의

오버로드

DbUpdateException()

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException(String)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException(SerializationInfo, StreamingContext)
사용되지 않음.

직렬화된 양식에서 클래스의 DbUpdateException 새 instance 초기화합니다.

DbUpdateException(String, IReadOnlyList<EntityEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException(String, IReadOnlyList<IUpdateEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException(String, Exception)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException(String, Exception, IReadOnlyList<EntityEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException(String, Exception, IReadOnlyList<IUpdateEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

DbUpdateException()

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException ();
Public Sub New ()

적용 대상

DbUpdateException(String)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException (string message);
new Microsoft.EntityFrameworkCore.DbUpdateException : string -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (message As String)

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

적용 대상

DbUpdateException(SerializationInfo, StreamingContext)

주의

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

직렬화된 양식에서 클래스의 DbUpdateException 새 instance 초기화합니다.

public DbUpdateException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.")]
public DbUpdateException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.EntityFrameworkCore.DbUpdateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.EntityFrameworkCore.DbUpdateException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.")>]
new Microsoft.EntityFrameworkCore.DbUpdateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

serialization 정보입니다.

context
StreamingContext

사용 중인 스트리밍 컨텍스트입니다.

특성

적용 대상

DbUpdateException(String, IReadOnlyList<EntityEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException (string message, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry> entries);
new Microsoft.EntityFrameworkCore.DbUpdateException : string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry> -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (message As String, entries As IReadOnlyList(Of EntityEntry))

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

entries
IReadOnlyList<EntityEntry>

오류와 관련된 항목입니다.

적용 대상

DbUpdateException(String, IReadOnlyList<IUpdateEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException (string message, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
new Microsoft.EntityFrameworkCore.DbUpdateException : string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (message As String, entries As IReadOnlyList(Of IUpdateEntry))

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

entries
IReadOnlyList<IUpdateEntry>

오류와 관련된 항목입니다.

적용 대상

DbUpdateException(String, Exception)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException (string message, Exception innerException);
public DbUpdateException (string message, Exception? innerException);
new Microsoft.EntityFrameworkCore.DbUpdateException : string * Exception -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

innerException
Exception

현재 예외의 원인인 예외입니다.

적용 대상

DbUpdateException(String, Exception, IReadOnlyList<EntityEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException (string message, Exception? innerException, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry> entries);
new Microsoft.EntityFrameworkCore.DbUpdateException : string * Exception * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry> -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (message As String, innerException As Exception, entries As IReadOnlyList(Of EntityEntry))

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

innerException
Exception

현재 예외의 원인인 예외입니다.

entries
IReadOnlyList<EntityEntry>

오류와 관련된 항목입니다.

적용 대상

DbUpdateException(String, Exception, IReadOnlyList<IUpdateEntry>)

DbUpdateException 클래스의 새 인스턴스를 초기화합니다.

public DbUpdateException (string message, Exception innerException, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
public DbUpdateException (string message, Exception? innerException, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
new Microsoft.EntityFrameworkCore.DbUpdateException : string * Exception * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> Microsoft.EntityFrameworkCore.DbUpdateException
Public Sub New (message As String, innerException As Exception, entries As IReadOnlyList(Of IUpdateEntry))

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

innerException
Exception

현재 예외의 원인인 예외입니다.

entries
IReadOnlyList<IUpdateEntry>

오류와 관련된 항목입니다.

적용 대상