ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType>.MapToStoredProcedures Method
Configures the stored procedures for the relationship.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | MapToStoredProcedures() | Configures stored procedures to be used for modifying this relationship. The default conventions for procedure and parameter names will be used. |
![]() | MapToStoredProcedures(Action<ManyToManyModificationStoredProceduresConfiguration<TEntityType, TTargetEntityType>>) | Configures stored procedures to be used for modifying this relationship. |
ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType>.MapToStoredProcedures Method ()
Configures stored procedures to be used for modifying this relationship. The default conventions for procedure and parameter names will be used.
public ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType> MapToStoredProcedures()
Return Value
Type: System.Data.Entity.ModelConfiguration.Configuration.ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType>The same ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType> instance so that multiple calls can be chained.
ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType>.MapToStoredProcedures Method (Action<ManyToManyModificationStoredProceduresConfiguration<TEntityType, TTargetEntityType>>)
Configures stored procedures to be used for modifying this relationship.
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] public ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType> MapToStoredProcedures( Action<ManyToManyModificationStoredProceduresConfiguration<TEntityType, TTargetEntityType>> modificationStoredProcedureMappingConfigurationAction )
Parameters
- modificationStoredProcedureMappingConfigurationAction
-
Type:
System.Action<ManyToManyModificationStoredProceduresConfiguration<TEntityType, TTargetEntityType>>
Configuration to override the default conventions for procedure and parameter names.
Return Value
Type: System.Data.Entity.ModelConfiguration.Configuration.ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType>The same ManyToManyNavigationPropertyConfiguration<TEntityType, TTargetEntityType> instance so that multiple calls can be chained.