EntitySetConfiguration<TEntityType>.HasManyBinding Method
Configures a many relationship from this entity type and binds the corresponding navigation property to the given entity set.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
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. | |
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>(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>(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. |
Top