DbEntityEntry<TEntity>.Equals 方法 (DbEntityEntry<TEntity>)

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

确定指定的 DbEntityEntry<TEntity> 是否等于此实例。 如果两个 DbEntityEntry<TEntity> 实例都是同一 DbContext 上的同一实体的项,则将这两个实例视为相等。

命名空间:  System.Data.Entity.Infrastructure
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Function Equals ( _
    other As DbEntityEntry(Of TEntity) _
) As Boolean
用法
Dim instance As DbEntityEntry 
Dim other As DbEntityEntry(Of TEntity)
Dim returnValue As Boolean 

returnValue = instance.Equals(other)
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public bool Equals(
    DbEntityEntry<TEntity> other
)
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
bool Equals(
    DbEntityEntry<TEntity>^ other
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member Equals : 
        other:DbEntityEntry<'TEntity> -> bool
public function Equals(
    other : DbEntityEntry<TEntity>
) : boolean

参数

返回值

类型:System.Boolean
如果指定的 DbEntityEntry<TEntity> 等于此实例,则为 true;否则为 false。

请参阅

参考

DbEntityEntry<TEntity> 类

Equals 重载

System.Data.Entity.Infrastructure 命名空间