ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType> Class

Definition

Allows configuration to be performed for a stored procedure that is used to modify a many to many relationship.

public class ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType> : System.Data.Entity.ModelConfiguration.Configuration.ModificationStoredProcedureConfigurationBase where TEntityType : class where TTargetEntityType : class
type ManyToManyModificationStoredProcedureConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)> = class
    inherit ModificationStoredProcedureConfigurationBase
Public Class ManyToManyModificationStoredProcedureConfiguration(Of TEntityType, TTargetEntityType)
Inherits ModificationStoredProcedureConfigurationBase

Type Parameters

TEntityType

The type of the entity that the relationship is being configured from.

TTargetEntityType

The type of the entity that the other end of the relationship targets.

Inheritance
ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

GetHashCode()

Serves as the default hash function.

GetType()

Gets the Type of the current instance.

HasName(String)

Sets the name of the stored procedure.

HasName(String, String)

Sets the name of the stored procedure.

LeftKeyParameter(Expression<Func<TEntityType,Byte[]>>, String)

Configures the parameter for the left key value(s).

LeftKeyParameter(Expression<Func<TEntityType,String>>, String)

Configures the parameter for the left key value(s).

LeftKeyParameter<TProperty>(Expression<Func<TEntityType,Nullable<TProperty>>>, String)

Configures the parameter for the left key value(s).

LeftKeyParameter<TProperty>(Expression<Func<TEntityType,TProperty>>, String)

Configures the parameter for the left key value(s).

RightKeyParameter(Expression<Func<TTargetEntityType,Byte[]>>, String)

Configures the parameter for the right key value(s).

RightKeyParameter(Expression<Func<TTargetEntityType,String>>, String)

Configures the parameter for the right key value(s).

RightKeyParameter<TProperty>(Expression<Func<TTargetEntityType,Nullable<TProperty>>>, String)

Configures the parameter for the right key value(s).

RightKeyParameter<TProperty>(Expression<Func<TTargetEntityType,TProperty>>, String)

Configures the parameter for the right key value(s).

ToString()

Returns a string that represents the current object.

Applies to