Share via


ConventionUpdateModificationStoredProcedureConfiguration.Parameter Method

Definition

Overloads

Parameter(PropertyInfo, String)

Configures a parameter for this stored procedure.

Parameter(String, String)

Configures a parameter for this stored procedure.

Parameter(PropertyInfo, String, String)

Configures a parameter for this stored procedure.

Parameter(String, String, String)

Configures a parameter for this stored procedure.

Parameter(PropertyInfo, String)

Configures a parameter for this stored procedure.

public System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration Parameter (System.Reflection.PropertyInfo propertyInfo, string parameterName);
member this.Parameter : System.Reflection.PropertyInfo * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration

Parameters

propertyInfo
PropertyInfo

The property to configure the parameter for.

parameterName
String

The name of the parameter.

Returns

The same configuration instance so that multiple calls can be chained.

Applies to

Parameter(String, String)

Configures a parameter for this stored procedure.

public System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration Parameter (string propertyName, string parameterName);
member this.Parameter : string * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration
Public Function Parameter (propertyName As String, parameterName As String) As ConventionUpdateModificationStoredProcedureConfiguration

Parameters

propertyName
String

The name of the property to configure the parameter for.

parameterName
String

The name of the parameter.

Returns

The same configuration instance so that multiple calls can be chained.

Applies to

Parameter(PropertyInfo, String, String)

Configures a parameter for this stored procedure.

public System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration Parameter (System.Reflection.PropertyInfo propertyInfo, string currentValueParameterName, string originalValueParameterName);
member this.Parameter : System.Reflection.PropertyInfo * string * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration

Parameters

propertyInfo
PropertyInfo

The property to configure the parameter for.

currentValueParameterName
String

The current value parameter name.

originalValueParameterName
String

The original value parameter name.

Returns

The same configuration instance so that multiple calls can be chained.

Applies to

Parameter(String, String, String)

Configures a parameter for this stored procedure.

public System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration Parameter (string propertyName, string currentValueParameterName, string originalValueParameterName);
member this.Parameter : string * string * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration
Public Function Parameter (propertyName As String, currentValueParameterName As String, originalValueParameterName As String) As ConventionUpdateModificationStoredProcedureConfiguration

Parameters

propertyName
String

The name of the property to configure the parameter for.

currentValueParameterName
String

The current value parameter name.

originalValueParameterName
String

The original value parameter name.

Returns

The same configuration instance so that multiple calls can be chained.

Applies to