Share via


EntitySetConfiguration<TEntityType>.HasRequiredBinding<TTargetType, TDerivedEntityType> Method (Expression<Func<TDerivedEntityType, TTargetType>>, EntitySetConfiguration<TTargetType>)

Configures a required 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 HasRequiredBinding(Of TTargetType As Class, TDerivedEntityType As {Class, TEntityType}) ( _
    navigationExpression As Expression(Of Func(Of TDerivedEntityType, TTargetType)), _
    targetSet As EntitySetConfiguration(Of TTargetType) _
) As NavigationPropertyBindingConfiguration
'Usage
Dim instance As EntitySetConfiguration 
Dim navigationExpression As Expression(Of Func(Of TDerivedEntityType, TTargetType))
Dim targetSet As EntitySetConfiguration(Of TTargetType)
Dim returnValue As NavigationPropertyBindingConfiguration 

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

Type Parameters

  • TTargetType
    The target entity set type.
  • TDerivedEntityType
    The target entity type.

Parameters

  • navigationExpression
    Type: System.Linq.Expressions.Expression<Func<TDerivedEntityType, TTargetType>>
    A lambda expression representing the navigation property for the relationship.For example, in C# t =&gt; t.MyProperty and in Visual Basic .NET Function(t) t.MyProperty.

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

HasRequiredBinding Overload

System.Web.Http.OData.Builder Namespace