共用方式為


DbEntityEntry<TEntity>.Collection 方法

定義

多載

Collection(String)

取得物件,表示從這個實體到相關實體集合的集合導覽屬性。

Collection<TElement>(Expression<Func<TEntity,ICollection<TElement>>>)

取得物件,表示從這個實體到相關實體集合的集合導覽屬性。

Collection<TElement>(String)

取得物件,表示從這個實體到相關實體集合的集合導覽屬性。

Collection(String)

取得物件,表示從這個實體到相關實體集合的集合導覽屬性。

public System.Data.Entity.Infrastructure.DbCollectionEntry Collection (string navigationProperty);
member this.Collection : string -> System.Data.Entity.Infrastructure.DbCollectionEntry
Public Function Collection (navigationProperty As String) As DbCollectionEntry

參數

navigationProperty
String

導覽屬性的名稱。

傳回

表示導覽屬性的物件。

適用於

Collection<TElement>(Expression<Func<TEntity,ICollection<TElement>>>)

取得物件,表示從這個實體到相關實體集合的集合導覽屬性。

public System.Data.Entity.Infrastructure.DbCollectionEntry<TEntity,TElement> Collection<TElement> (System.Linq.Expressions.Expression<Func<TEntity,System.Collections.Generic.ICollection<TElement>>> navigationProperty) where TElement : class;
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.Infrastructure.DbCollectionEntry<TEntity,TElement> Collection<TElement> (System.Linq.Expressions.Expression<Func<TEntity,System.Collections.Generic.ICollection<TElement>>> navigationProperty) where TElement : class;
member this.Collection : System.Linq.Expressions.Expression<Func<'Entity, System.Collections.Generic.ICollection<'Element>>> -> System.Data.Entity.Infrastructure.DbCollectionEntry<'Entity, 'Element (requires 'Entity : null and 'Element : null)> (requires 'Element : null)
Public Function Collection(Of TElement As Class) (navigationProperty As Expression(Of Func(Of TEntity, ICollection(Of TElement)))) As DbCollectionEntry(Of TEntity, TElement)

類型參數

TElement

集合中項目的類型。

參數

navigationProperty
Expression<Func<TEntity,ICollection<TElement>>>

表示導覽屬性的運算式。

傳回

表示導覽屬性的物件。

屬性

適用於

Collection<TElement>(String)

取得物件,表示從這個實體到相關實體集合的集合導覽屬性。

public System.Data.Entity.Infrastructure.DbCollectionEntry<TEntity,TElement> Collection<TElement> (string navigationProperty) where TElement : class;
member this.Collection : string -> System.Data.Entity.Infrastructure.DbCollectionEntry<'Entity, 'Element (requires 'Entity : null and 'Element : null)> (requires 'Element : null)
Public Function Collection(Of TElement As Class) (navigationProperty As String) As DbCollectionEntry(Of TEntity, TElement)

類型參數

TElement

集合中項目的類型。

參數

navigationProperty
String

導覽屬性的名稱。

傳回

表示導覽屬性的物件。

適用於