DbUpdateConcurrencyException 类

定义

在保存到数据库时遇到并发冲突时引发的异常。 如果在保存过程中影响意外的行数,则会发生并发冲突。 这通常是因为数据库中的数据自加载到内存后已修改。

public class DbUpdateConcurrencyException : Microsoft.EntityFrameworkCore.DbUpdateException
[System.Serializable]
public class DbUpdateConcurrencyException : Microsoft.EntityFrameworkCore.DbUpdateException
type DbUpdateConcurrencyException = class
    inherit DbUpdateException
[<System.Serializable>]
type DbUpdateConcurrencyException = class
    inherit DbUpdateException
Public Class DbUpdateConcurrencyException
Inherits DbUpdateException
继承
DbUpdateConcurrencyException
属性

注解

有关详细信息和示例 ,请参阅处理并发冲突

构造函数

DbUpdateConcurrencyException()

初始化 DbUpdateConcurrencyException 类的新实例。

DbUpdateConcurrencyException(SerializationInfo, StreamingContext)
已过时.

从序列化形式 DbUpdateException 初始化 类的新实例。

DbUpdateConcurrencyException(String)

初始化 DbUpdateConcurrencyException 类的新实例。

DbUpdateConcurrencyException(String, Exception)

初始化 DbUpdateConcurrencyException 类的新实例。

DbUpdateConcurrencyException(String, Exception, IReadOnlyList<IUpdateEntry>)

初始化 DbUpdateConcurrencyException 类的新实例。

DbUpdateConcurrencyException(String, IReadOnlyList<IUpdateEntry>)

初始化 DbUpdateConcurrencyException 类的新实例。

属性

Entries

获取错误中涉及的条目。 通常,这是一个条目,但在某些情况下,它可能是零个或多个条目。

(继承自 DbUpdateException)

适用于