DbEntityEntry.Equals-Methode (DbEntityEntry)
[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 gleich dieser Instanz ist. Zwei DbEntityEntry-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 _
) As Boolean
'Usage
Dim instance As DbEntityEntry
Dim other As DbEntityEntry
Dim returnValue As Boolean
returnValue = instance.Equals(other)
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public bool Equals(
DbEntityEntry other
)
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
bool Equals(
DbEntityEntry^ other
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member Equals :
other:DbEntityEntry -> bool
public function Equals(
other : DbEntityEntry
) : boolean
Parameter
- other
Typ: System.Data.Entity.Infrastructure.DbEntityEntry
Das DbEntityEntry, das mit dieser Instanz verglichen werden soll.
Rückgabewert
Typ: System.Boolean
true, wenn das angegebene DbEntityEntry dieser Instanz entspricht, andernfalls false.