DbUpdateException 类

定义

保存对数据库的更改失败时引发 DbContext 的异常。 请注意,由于安全性,此异常引用的状态条目不会序列化,序列化后对状态条目的访问将返回 null。

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification="SerializeObjectState used instead")]
[System.Serializable]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", Justification="FxCop rule is wrong; Database is not two words.", MessageId="Db")]
public class DbUpdateException : System.Data.DataException
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification="SerializeObjectState used instead")]
[System.Serializable]
public class DbUpdateException : System.Data.DataException
type DbUpdateException = class
    inherit DataException
Public Class DbUpdateException
Inherits DataException
继承
DbUpdateException
派生
属性

构造函数

DbUpdateException()

初始化 DbUpdateException 类的新实例。

DbUpdateException(String, Exception)

初始化 DbUpdateException 类的新实例。

DbUpdateException(String)

初始化 DbUpdateException 类的新实例。

属性

Entries

获取 DbEntityEntry 表示无法保存到数据库的实体的 对象。

适用于