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>>
エントリ。