EntitySetConfiguration<TEntityType>.HasManyBinding Method
Namespace: System.Web.Http.OData.Builder
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
HasManyBinding<TTargetType>(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. |
|
HasManyBinding<TTargetType>(Expression<Func<TEntityType, IEnumerable<TTargetType>>>, String) | Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set. |
|
HasManyBinding<TTargetType, TDerivedEntityType>(Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>>, EntitySetConfiguration<TTargetType>) | Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set. |
|
HasManyBinding<TTargetType, TDerivedEntityType>(Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>>, String) | Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set. |
See Also
EntitySetConfiguration<TEntityType> Class
System.Web.Http.OData.Builder Namespace
Return to top
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.
Syntax
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<'TTargetType when 'TTargetType : not struct> :
navigationExpression:Expression<Func<'TEntityType, IEnumerable<'TTargetType>>> *
targetSet:EntitySetConfiguration<'TTargetType> -> NavigationPropertyBindingConfiguration
Public Function HasManyBinding(Of TTargetType As Class) (
navigationExpression As Expression(Of Func(Of TEntityType, IEnumerable(Of TTargetType))),
targetSet As EntitySetConfiguration(Of TTargetType)
) As NavigationPropertyBindingConfiguration
Parameters
navigationExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, IEnumerable<TTargetType>>>A lambda expression representing the navigation property for the relationship. For example, in C# t => t.MyProperty and in Visual Basic .NET Function(t) t.MyProperty.
targetSet
Type: System.Web.Http.OData.Builder.EntitySetConfiguration<TTargetType>The target entity set for the binding.
Return Value
Type: System.Web.Http.OData.Builder.NavigationPropertyBindingConfiguration
A configuration object that can be used to further configure the relationship further.
Type Parameters
- TTargetType
The target entity set type.
Return to top
EntitySetConfiguration<TEntityType>.HasManyBinding<TTargetType> Method (Expression<Func<TEntityType, IEnumerable<TTargetType>>>, String)
Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set.
Syntax
public NavigationPropertyBindingConfiguration HasManyBinding<TTargetType>(
Expression<Func<TEntityType, IEnumerable<TTargetType>>> navigationExpression,
string entitySetName
)
where TTargetType : class
public:
generic<typename TTargetType>
where TTargetType : ref class
NavigationPropertyBindingConfiguration^ HasManyBinding(
Expression<Func<TEntityType, IEnumerable<TTargetType>^>^>^ navigationExpression,
String^ entitySetName
)
member HasManyBinding<'TTargetType when 'TTargetType : not struct> :
navigationExpression:Expression<Func<'TEntityType, IEnumerable<'TTargetType>>> *
entitySetName:string -> NavigationPropertyBindingConfiguration
Public Function HasManyBinding(Of TTargetType As Class) (
navigationExpression As Expression(Of Func(Of TEntityType, IEnumerable(Of TTargetType))),
entitySetName As String
) As NavigationPropertyBindingConfiguration
Parameters
navigationExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, IEnumerable<TTargetType>>>A lambda expression representing the navigation property for the relationship. For example, in C# t => t.MyProperty and in Visual Basic .NET Function(t) t.MyProperty.
entitySetName
Type: System.StringThe target entity set name for the binding. It will be created if it does not exist.
Return Value
Type: System.Web.Http.OData.Builder.NavigationPropertyBindingConfiguration
A configuration object that can be used to further configure the relationship.
Type Parameters
- TTargetType
The target entity set type.
Return to top
EntitySetConfiguration<TEntityType>.HasManyBinding<TTargetType, TDerivedEntityType> Method (Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>>, EntitySetConfiguration<TTargetType>)
Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set.
Syntax
public NavigationPropertyBindingConfiguration HasManyBinding<TTargetType, TDerivedEntityType>(
Expression<Func<TDerivedEntityType, IEnumerable<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^ HasManyBinding(
Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>^>^>^ navigationExpression,
EntitySetConfiguration<TTargetType>^ targetSet
)
member HasManyBinding<'TTargetType, 'TDerivedEntityType when 'TTargetType : not struct when 'TDerivedEntityType : not struct and 'TEntityType> :
navigationExpression:Expression<Func<'TDerivedEntityType, IEnumerable<'TTargetType>>> *
targetSet:EntitySetConfiguration<'TTargetType> -> NavigationPropertyBindingConfiguration
Public Function HasManyBinding(Of TTargetType As Class, TDerivedEntityType As { Class, TEntityType }) (
navigationExpression As Expression(Of Func(Of TDerivedEntityType, IEnumerable(Of TTargetType))),
targetSet As EntitySetConfiguration(Of TTargetType)
) As NavigationPropertyBindingConfiguration
Parameters
navigationExpression
Type: System.Linq.Expressions.Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>>A lambda expression representing the navigation property for the relationship. For example, in C# t => t.MyProperty and in Visual Basic .NET Function(t) t.MyProperty.
targetSet
Type: System.Web.Http.OData.Builder.EntitySetConfiguration<TTargetType>The target entity set for the binding.
Return Value
Type: System.Web.Http.OData.Builder.NavigationPropertyBindingConfiguration
A configuration object that can be used to further configure the relationship further.
Type Parameters
- TTargetType
The target entity set type.
- TDerivedEntityType
The target entity type.
Return to top
EntitySetConfiguration<TEntityType>.HasManyBinding<TTargetType, TDerivedEntityType> Method (Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>>, String)
Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set.
Syntax
public NavigationPropertyBindingConfiguration HasManyBinding<TTargetType, TDerivedEntityType>(
Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>> navigationExpression,
string entitySetName
)
where TTargetType : class
where TDerivedEntityType : class, TEntityType
public:
generic<typename TTargetType, typename TDerivedEntityType>
where TTargetType : ref class
where TDerivedEntityType : ref class, TEntityType
NavigationPropertyBindingConfiguration^ HasManyBinding(
Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>^>^>^ navigationExpression,
String^ entitySetName
)
member HasManyBinding<'TTargetType, 'TDerivedEntityType when 'TTargetType : not struct when 'TDerivedEntityType : not struct and 'TEntityType> :
navigationExpression:Expression<Func<'TDerivedEntityType, IEnumerable<'TTargetType>>> *
entitySetName:string -> NavigationPropertyBindingConfiguration
Public Function HasManyBinding(Of TTargetType As Class, TDerivedEntityType As { Class, TEntityType }) (
navigationExpression As Expression(Of Func(Of TDerivedEntityType, IEnumerable(Of TTargetType))),
entitySetName As String
) As NavigationPropertyBindingConfiguration
Parameters
navigationExpression
Type: System.Linq.Expressions.Expression<Func<TDerivedEntityType, IEnumerable<TTargetType>>>A lambda expression representing the navigation property for the relationship. For example, in C# t => t.MyProperty and in Visual Basic .NET Function(t) t.MyProperty.
entitySetName
Type: System.StringThe target entity set name for the binding. It will be created if it does not exist.
Return Value
Type: System.Web.Http.OData.Builder.NavigationPropertyBindingConfiguration
A configuration object that can be used to further configure the relationship further.
Type Parameters
- TTargetType
The target entity set type.
- TDerivedEntityType
The target entity type.
Return to top