DbUpdateException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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(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>
오류와 관련된 항목입니다.
적용 대상
Entity Framework