Share via


ManyToManyNavigationPropertyConfiguration<TEntityType,TTargetEntityType>.MapToStoredProcedures Method

Definition

Overloads

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.

MapToStoredProcedures()

Configures stored procedures to be used for modifying this relationship. The default conventions for procedure and parameter names will be used.

public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyNavigationPropertyConfiguration<TEntityType,TTargetEntityType> MapToStoredProcedures ();
member this.MapToStoredProcedures : unit -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyNavigationPropertyConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)>
Public Function MapToStoredProcedures () As ManyToManyNavigationPropertyConfiguration(Of TEntityType, TTargetEntityType)

Returns

The same ManyToManyNavigationPropertyConfiguration<TEntityType,TTargetEntityType> instance so that multiple calls can be chained.

Applies to

MapToStoredProcedures(Action<ManyToManyModificationStoredProceduresConfiguration<TEntityType,TTargetEntityType>>)

Configures stored procedures to be used for modifying this relationship.

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyNavigationPropertyConfiguration<TEntityType,TTargetEntityType> MapToStoredProcedures (Action<System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProceduresConfiguration<TEntityType,TTargetEntityType>> modificationStoredProcedureMappingConfigurationAction);
member this.MapToStoredProcedures : Action<System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProceduresConfiguration<'EntityType, 'argetEntityType>> -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyNavigationPropertyConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)>
Public Function MapToStoredProcedures (modificationStoredProcedureMappingConfigurationAction As Action(Of ManyToManyModificationStoredProceduresConfiguration(Of TEntityType, TTargetEntityType))) As ManyToManyNavigationPropertyConfiguration(Of TEntityType, TTargetEntityType)

Parameters

modificationStoredProcedureMappingConfigurationAction
Action<ManyToManyModificationStoredProceduresConfiguration<TEntityType,TTargetEntityType>>

Configuration to override the default conventions for procedure and parameter names.

Returns

The same ManyToManyNavigationPropertyConfiguration<TEntityType,TTargetEntityType> instance so that multiple calls can be chained.

Attributes

Applies to