DbContext.Entry 方法 (Object)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
获取给定实体的 DbEntityEntry 对象,以便提供对与该实体有关的信息的访问以及对实体执行操作的功能。
命名空间: System.Data.Entity
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Function Entry ( _
entity As Object _
) As DbEntityEntry
用法
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
参数
- entity
类型:System.Object
实体。
返回值
类型:System.Data.Entity.Infrastructure.DbEntityEntry
实体的项。