DbEntityEntry<TEntity>.Collection<TElement> メソッド (String)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
このエンティティから関連するエンティティのコレクションへのコレクション ナビゲーション プロパティを表すオブジェクトを取得します。
名前空間: System.Data.Entity.Infrastructure
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function Collection(Of TElement As Class) ( _
navigationProperty As String _
) As DbCollectionEntry(Of TEntity, TElement)
'使用
Dim instance As DbEntityEntry
Dim navigationProperty As String
Dim returnValue As DbCollectionEntry(Of TEntity, TElement)
returnValue = instance.Collection(navigationProperty)
public DbCollectionEntry<TEntity, TElement> Collection<TElement>(
string navigationProperty
)
where TElement : class
public:
generic<typename TElement>
where TElement : ref class
DbCollectionEntry<TEntity, TElement>^ Collection(
String^ navigationProperty
)
member Collection :
navigationProperty:string -> DbCollectionEntry<'TEntity, 'TElement> when 'TElement : not struct
JScript does not support generic types and methods.
型パラメーター
- TElement
コレクション内の要素の型。
パラメーター
- navigationProperty
型 : System.String
ナビゲーション プロパティの名前。
戻り値
型 : System.Data.Entity.Infrastructure.DbCollectionEntry<TEntity, TElement>
ナビゲーション プロパティを表すオブジェクト。