DbChangeTracker.Entries 方法

定义

重载

Entries()

获取 DbEntityEntry 此上下文跟踪的所有实体的对象。

Entries<TEntity>()

获取 DbEntityEntry 此上下文跟踪的给定类型的所有实体的对象。

Entries()

获取 DbEntityEntry 此上下文跟踪的所有实体的对象。

public System.Collections.Generic.IEnumerable<System.Data.Entity.Infrastructure.DbEntityEntry> Entries ();
member this.Entries : unit -> seq<System.Data.Entity.Infrastructure.DbEntityEntry>
Public Function Entries () As IEnumerable(Of DbEntityEntry)

返回

项。

适用于

Entries<TEntity>()

获取 DbEntityEntry 此上下文跟踪的给定类型的所有实体的对象。

public System.Collections.Generic.IEnumerable<System.Data.Entity.Infrastructure.DbEntityEntry<TEntity>> Entries<TEntity> () where TEntity : class;
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Collections.Generic.IEnumerable<System.Data.Entity.Infrastructure.DbEntityEntry<TEntity>> Entries<TEntity> () where TEntity : class;
member this.Entries : unit -> seq<System.Data.Entity.Infrastructure.DbEntityEntry<'Entity>> (requires 'Entity : null)
Public Function Entries(Of TEntity As Class) () As IEnumerable(Of DbEntityEntry(Of TEntity))

类型参数

TEntity

实体的类型。

返回

项。

属性

适用于