DbContext.Entry Method (Object)
[This page is specific to the Entity Framework version 6. The latest version is available as the 'Entity Framework' NuGet package. For more information about Entity Framework, see msdn.com/data/ef.]
Gets a DbEntityEntry object for the given entity providing access to information about the entity and the ability to perform actions on the entity.
Assembly: EntityFramework (in EntityFramework.dll)
'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)
Parameters
- entity
- Type: System.Object
The entity.
Show: