Share via


EntityTypeConfiguration<TEntityType>.HasMany<TTargetEntity> Method (Expression<Func<TEntityType, IEnumerable<TTargetEntity>>>)

 

Configures a many relationship from this entity type.

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

Syntax

public NavigationPropertyConfiguration HasMany<TTargetEntity>(
    Expression<Func<TEntityType, IEnumerable<TTargetEntity>>> navigationPropertyExpression
)
where TTargetEntity : class
public:
generic<typename TTargetEntity>
where TTargetEntity : ref class
NavigationPropertyConfiguration^ HasMany(
    Expression<Func<TEntityType, IEnumerable<TTargetEntity>^>^>^ navigationPropertyExpression
)
member HasMany<'TTargetEntity when 'TTargetEntity : not struct> : 
        navigationPropertyExpression:Expression<Func<'TEntityType, IEnumerable<'TTargetEntity>>> -> NavigationPropertyConfiguration
Public Function HasMany(Of TTargetEntity As Class) (
    navigationPropertyExpression As Expression(Of Func(Of TEntityType, IEnumerable(Of TTargetEntity)))
) As NavigationPropertyConfiguration

Parameters

Return Value

Type: System.Web.Http.OData.Builder.NavigationPropertyConfiguration

A configuration object that can be used to further configure the relationship.

Type Parameters

  • TTargetEntity
    The type of the entity at the other end of the relationship.

See Also

EntityTypeConfiguration<TEntityType> Class
System.Web.Http.OData.Builder Namespace

Return to top