UpdateModificationStoredProcedureConfiguration<TEntityType>.Parameter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Parameter(Expression<Func<TEntityType,String>>, String, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,string>> propertyExpression, string currentValueParameterName, string originalValueParameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, string>> * string * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, String)), currentValueParameterName As String, originalValueParameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,String>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- 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.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,DbGeography>>, String, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,System.Data.Entity.Spatial.DbGeography>> propertyExpression, string currentValueParameterName, string originalValueParameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, System.Data.Entity.Spatial.DbGeography>> * string * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, DbGeography)), currentValueParameterName As String, originalValueParameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,DbGeography>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- 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.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,Byte[]>>, String, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,byte[]>> propertyExpression, string currentValueParameterName, string originalValueParameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, byte[]>> * string * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, Byte())), currentValueParameterName As String, originalValueParameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,Byte[]>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- 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.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,DbGeometry>>, String, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,System.Data.Entity.Spatial.DbGeometry>> propertyExpression, string currentValueParameterName, string originalValueParameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, System.Data.Entity.Spatial.DbGeometry>> * string * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, DbGeometry)), currentValueParameterName As String, originalValueParameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,DbGeometry>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- 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.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,DbGeometry>>, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,System.Data.Entity.Spatial.DbGeometry>> propertyExpression, string parameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, System.Data.Entity.Spatial.DbGeometry>> * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, DbGeometry)), parameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,DbGeometry>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
The name of the parameter.
Returns
The same configuration instance so that multiple calls can be chained.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,DbGeography>>, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,System.Data.Entity.Spatial.DbGeography>> propertyExpression, string parameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, System.Data.Entity.Spatial.DbGeography>> * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, DbGeography)), parameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,DbGeography>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
The name of the parameter.
Returns
The same configuration instance so that multiple calls can be chained.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,Byte[]>>, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,byte[]>> propertyExpression, string parameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, byte[]>> * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, Byte())), parameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,Byte[]>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
The name of the parameter.
Returns
The same configuration instance so that multiple calls can be chained.
- Attributes
Applies to
Parameter(Expression<Func<TEntityType,String>>, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter (System.Linq.Expressions.Expression<Func<TEntityType,string>> propertyExpression, string parameterName);
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, string>> * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)>
Public Function Parameter (propertyExpression As Expression(Of Func(Of TEntityType, String)), parameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Parameters
- propertyExpression
- Expression<Func<TEntityType,String>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
The name of the parameter.
Returns
The same configuration instance so that multiple calls can be chained.
- Attributes
Applies to
Parameter<TProperty>(Expression<Func<TEntityType,Nullable<TProperty>>>, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<TProperty>>> propertyExpression, string parameterName) where TProperty : struct;
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<'Property>>> * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)> (requires 'Property : struct)
Public Function Parameter(Of TProperty As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of TProperty))), parameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Type Parameters
- TProperty
The type of the property to configure.
Parameters
- propertyExpression
- Expression<Func<TEntityType,Nullable<TProperty>>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
The name of the parameter.
Returns
The same configuration instance so that multiple calls can be chained.
- Attributes
Applies to
Parameter<TProperty>(Expression<Func<TEntityType,TProperty>>, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntityType,TProperty>> propertyExpression, string parameterName) where TProperty : struct;
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, 'Property>> * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)> (requires 'Property : struct)
Public Function Parameter(Of TProperty As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, TProperty)), parameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Type Parameters
- TProperty
The type of the property to configure.
Parameters
- propertyExpression
- Expression<Func<TEntityType,TProperty>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
The name of the parameter.
Returns
The same configuration instance so that multiple calls can be chained.
- Attributes
Applies to
Parameter<TProperty>(Expression<Func<TEntityType,Nullable<TProperty>>>, String, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<TProperty>>> propertyExpression, string currentValueParameterName, string originalValueParameterName) where TProperty : struct;
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<'Property>>> * string * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)> (requires 'Property : struct)
Public Function Parameter(Of TProperty As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of TProperty))), currentValueParameterName As String, originalValueParameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Type Parameters
- TProperty
The type of the property to configure.
Parameters
- propertyExpression
- Expression<Func<TEntityType,Nullable<TProperty>>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- 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.
- Attributes
Applies to
Parameter<TProperty>(Expression<Func<TEntityType,TProperty>>, String, String)
Configures a parameter for this stored procedure.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<TEntityType> Parameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntityType,TProperty>> propertyExpression, string currentValueParameterName, string originalValueParameterName) where TProperty : struct;
member this.Parameter : System.Linq.Expressions.Expression<Func<'EntityType, 'Property>> * string * string -> System.Data.Entity.ModelConfiguration.Configuration.UpdateModificationStoredProcedureConfiguration<'EntityType (requires 'EntityType : null)> (requires 'Property : struct)
Public Function Parameter(Of TProperty As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, TProperty)), currentValueParameterName As String, originalValueParameterName As String) As UpdateModificationStoredProcedureConfiguration(Of TEntityType)
Type Parameters
- TProperty
The type of the property to configure.
Parameters
- propertyExpression
- Expression<Func<TEntityType,TProperty>>
A lambda expression representing the property to configure the parameter for. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- 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.
- Attributes
Applies to
Entity Framework