Freigeben über


DbEntityEntry<TEntity>.Equals-Methode (DbEntityEntry<TEntity>)

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Bestimmt, ob das angegebene DbEntityEntry<TEntity> gleich dieser Instanz ist. Zwei DbEntityEntry<TEntity>-Instanzen gelten als gleich, wenn beide Instanzen Einträge für die gleiche Entität im gleichen DbContext sind.

Namespace:  System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Function Equals ( _
    other As DbEntityEntry(Of TEntity) _
) As Boolean
'Usage
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

Parameter

Rückgabewert

Typ: System.Boolean
true, wenn das angegebene DbEntityEntry<TEntity> dieser Instanz entspricht, andernfalls false.

Siehe auch

Verweis

DbEntityEntry<TEntity> Klasse

Equals-Überladung

System.Data.Entity.Infrastructure-Namespace