DbChangeTracker.Entries Method
Namespace:
System.Data.Entity.Infrastructure
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | Entries() | Gets DbEntityEntry objects for all the entities tracked by this context. |
![]() | Entries<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.
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.