DbContext.Entry-Methode (Object)
[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.]
Ruft ein DbEntityEntry-Objekt für die angegebene Entität ab, um Zugriff auf Informationen zur Entität und die Fähigkeit zum Ausführen von Aktionen für die Entität bereitzustellen.
Namespace: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Function Entry ( _
entity As Object _
) As DbEntityEntry
'Usage
Dim instance As DbContext
Dim entity As Object
Dim returnValue As DbEntityEntry
returnValue = instance.Entry(entity)
public DbEntityEntry Entry(
Object entity
)
public:
DbEntityEntry^ Entry(
Object^ entity
)
member Entry :
entity:Object -> DbEntityEntry
public function Entry(
entity : Object
) : DbEntityEntry
Parameter
- entity
Typ: System.Object
Die Entität.
Rückgabewert
Typ: System.Data.Entity.Infrastructure.DbEntityEntry
Ein Eintrag für die Entität.