Share via


EntitySetConfiguration<TEntityType>.HasManyBinding<TTargetType> Method (Expression<Func<TEntityType, IEnumerable<TTargetType>>>, EntitySetConfiguration<TTargetType>)

Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set.

Namespace:  System.Web.Http.OData.Builder
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

'Declaration
Public Function HasManyBinding(Of TTargetType As Class) ( _
    navigationExpression As Expression(Of Func(Of TEntityType, IEnumerable(Of TTargetType))), _
    targetSet As EntitySetConfiguration(Of TTargetType) _
) As NavigationPropertyBindingConfiguration
'Usage
Dim instance As EntitySetConfiguration 
Dim navigationExpression As Expression(Of Func(Of TEntityType, IEnumerable(Of TTargetType)))
Dim targetSet As EntitySetConfiguration(Of TTargetType)
Dim returnValue As NavigationPropertyBindingConfiguration 

returnValue = instance.HasManyBinding(navigationExpression, _
    targetSet)
public NavigationPropertyBindingConfiguration HasManyBinding<TTargetType>(
    Expression<Func<TEntityType, IEnumerable<TTargetType>>> navigationExpression,
    EntitySetConfiguration<TTargetType> targetSet
)
where TTargetType : class
public:
generic<typename TTargetType>
where TTargetType : ref class 
NavigationPropertyBindingConfiguration^ HasManyBinding(
    Expression<Func<TEntityType, IEnumerable<TTargetType>^>^>^ navigationExpression, 
    EntitySetConfiguration<TTargetType>^ targetSet
)
member HasManyBinding : 
        navigationExpression:Expression<Func<'TEntityType, IEnumerable<'TTargetType>>> * 
        targetSet:EntitySetConfiguration<'TTargetType> -> NavigationPropertyBindingConfiguration   when 'TTargetType : not struct
JScript does not support generic types and methods.

Type Parameters

  • TTargetType
    The target entity set type.

Parameters

Return Value

Type: System.Web.Http.OData.Builder.NavigationPropertyBindingConfiguration
A configuration object that can be used to further configure the relationship.

See Also

Reference

EntitySetConfiguration<TEntityType> Class

HasManyBinding Overload

System.Web.Http.OData.Builder Namespace