StructuralTypeConfiguration<TStructuralType>.CollectionProperty<TElementType> 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.
Ajoute une propriété de collection à ce type EDM.
public Microsoft.AspNet.OData.Builder.CollectionPropertyConfiguration CollectionProperty<TElementType> (System.Linq.Expressions.Expression<Func<TStructuralType,System.Collections.Generic.IEnumerable<TElementType>>> propertyExpression);
member this.CollectionProperty : System.Linq.Expressions.Expression<Func<'StructuralType, seq<'ElementType>>> -> Microsoft.AspNet.OData.Builder.CollectionPropertyConfiguration
Public Function CollectionProperty(Of TElementType) (propertyExpression As Expression(Of Func(Of TStructuralType, IEnumerable(Of TElementType)))) As CollectionPropertyConfiguration
Paramètres de type
- TElementType
Type d'élément de la collection.
Paramètres
- propertyExpression
- Expression<Func<TStructuralType,IEnumerable<TElementType>>>
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 propriété.