DbChangeTracker.Entries<TEntity> - метод
[Эта страница относится к документации к Entity Framework 6. Последняя версия доступна в составе пакета Entity Framework NuGet. Дополнительные сведения об Entity Framework см. в разделе msdn.com/data/ef.]
Возвращает объекты DbEntityEntry для всех сущностей данного типа, отслеживаемых этим контекстом.
Пространство имен: System.Data.Entity.Infrastructure
Сборка: EntityFramework (в EntityFramework.dll)
Синтаксис
'Декларация
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public Function Entries(Of TEntity As Class) As IEnumerable(Of DbEntityEntry(Of TEntity))
'Применение
Dim instance As DbChangeTracker
Dim returnValue As IEnumerable(Of DbEntityEntry(Of TEntity))
returnValue = instance.Entries()
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public IEnumerable<DbEntityEntry<TEntity>> Entries<TEntity>()
where TEntity : class
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
generic<typename TEntity>
where TEntity : ref class
IEnumerable<DbEntityEntry<TEntity>^>^ Entries()
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
member Entries : unit -> IEnumerable<DbEntityEntry<'TEntity>> when 'TEntity : not struct
JScript does not support generic types and methods.
Параметры типа
- TEntity
Тип сущности.
Возвращаемое значение
Тип: System.Collections.Generic.IEnumerable<DbEntityEntry<TEntity>>
Записи.