DbEntityEntry<TEntity>.Collection<TElement>-Methode (String)
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Ruft ein Objekt ab, das die Auflistungsnavigationseigenschaft für die Navigation von dieser Entität zu einer Auflistung verknüpfter Entitäten darstellt.
Namespace: System.Data.Entity.Infrastructure
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Function Collection(Of TElement As Class) ( _
navigationProperty As String _
) As DbCollectionEntry(Of TEntity, TElement)
'Usage
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.
Typparameter
- TElement
Der Typ der Elemente in der Auflistung.
Parameter
- navigationProperty
Typ: System.String
Der Name der Navigationseigenschaft.
Rückgabewert
Typ: System.Data.Entity.Infrastructure.DbCollectionEntry<TEntity, TElement>
Ein Objekt, das die Navigationseigenschaft darstellt.