DbContext.Set<TEntity> メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
コンテキストの特定の型のエンティティと基になるストアにアクセスするための DbSet<TEntity> インスタンスを返します。
名前空間: System.Data.Entity
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<SuppressMessageAttribute("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId := "Set")> _
Public Overridable Function Set(Of TEntity As Class) As DbSet(Of TEntity)
'使用
Dim instance As DbContext
Dim returnValue As DbSet(Of TEntity)
returnValue = instance.Set()
[SuppressMessageAttribute("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Set")]
public virtual DbSet<TEntity> Set<TEntity>()
where TEntity : class
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1716:IdentifiersShouldNotMatchKeywords", MessageId = L"Set")]
public:
generic<typename TEntity>
where TEntity : ref class
virtual DbSet<TEntity>^ Set()
[<SuppressMessageAttribute("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Set")>]
abstract Set : unit -> DbSet<'TEntity> when 'TEntity : not struct
[<SuppressMessageAttribute("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Set")>]
override Set : unit -> DbSet<'TEntity> when 'TEntity : not struct
JScript does not support generic types and methods.
型パラメーター
- TEntity
セットを返す型のエンティティ。
戻り値
型 : System.Data.Entity.DbSet<TEntity>
指定されたエンティティ型のセット。
解説
Entity Framework は、特定のコンテキスト インスタンスとエンティティの型で呼び出された場合に、毎回このメソッドが同じインスタンスを返す必要があることに注意してください。 また、Set(Type) メソッドで返される非ジェネリック DbSet は、同じ基になるクエリとエンティティのセットをラップする必要もあります。 このメソッドが、単体テストのためにテスト ダブルを作成する以外の何かにオーバーライドされる場合、これらのインバリアントを維持する必要があります。 詳細については、DbSet<TEntity> クラスのトピックを参照してください。