StructuralTypeConfiguration<TStructuralType>.ContainsMany<TTargetEntity> Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Configure une relation de ce type structurel à une propriété de navigation de collection autonome.
public Microsoft.AspNet.OData.Builder.NavigationPropertyConfiguration ContainsMany<TTargetEntity> (System.Linq.Expressions.Expression<Func<TStructuralType,System.Collections.Generic.IEnumerable<TTargetEntity>>> navigationPropertyExpression) where TTargetEntity : class;
member this.ContainsMany : System.Linq.Expressions.Expression<Func<'StructuralType, seq<'argetEntity>>> -> Microsoft.AspNet.OData.Builder.NavigationPropertyConfiguration (requires 'argetEntity : null)
Public Function ContainsMany(Of TTargetEntity As Class) (navigationPropertyExpression As Expression(Of Func(Of TStructuralType, IEnumerable(Of TTargetEntity)))) As NavigationPropertyConfiguration
Paramètres de type
- TTargetEntity
Type d'entité à l'autre bout de la relation.
Paramètres
- navigationPropertyExpression
- Expression<Func<TStructuralType,IEnumerable<TTargetEntity>>>
Expression lambda représentant la propriété de navigation pour la relation. Par exemple, en C# t => t.MyProperty
et en Visual Basic .NET Function(t) t.MyProperty
.
Retours
Objet de configuration pouvant être utilisé pour configurer davantage la relation.