DbChangeTracker.Entries Method

 

Namespace:   System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodEntries()

Gets DbEntityEntry objects for all the entities tracked by this context.

System_CAPS_pubmethodEntries<TEntity>()

Gets DbEntityEntry objects for all the entities of the given type tracked by this context.


DbChangeTracker.Entries Method ()

Gets DbEntityEntry objects for all the entities tracked by this context.

public IEnumerable<DbEntityEntry> Entries()

DbChangeTracker.Entries<TEntity> Method ()

Gets DbEntityEntry objects for all the entities of the given type tracked by this context.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public IEnumerable<DbEntityEntry<TEntity>> Entries<TEntity>()
where TEntity : class

Type Parameters

TEntity

The type of the entity.