InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter Method

 

Configures a parameter for this stored procedure.

Namespace:   System.Data.Entity.ModelConfiguration.Configuration
Assembly:  EntityFramework (in EntityFramework.dll)

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

Configures a parameter for this stored procedure.

System_CAPS_pubmethodParameter(Expression<Func<TEntityType, DbGeography>>, String)

Configures a parameter for this stored procedure.

System_CAPS_pubmethodParameter(Expression<Func<TEntityType, DbGeometry>>, String)

Configures a parameter for this stored procedure.

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

Configures a parameter for this stored procedure.

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

Configures a parameter for this stored procedure.

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

Configures a parameter for this stored procedure.


InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter Method (Expression<Func<TEntityType, Byte[]>>, String)

Configures a parameter for this stored procedure.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public InsertModificationStoredProcedureConfiguration<TEntityType> Parameter(
	Expression<Func<TEntityType, byte[]>> propertyExpression,
	string parameterName
)

Parameters

propertyExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, Byte[]>>

A lambda expression representing the property to configure the parameter for. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

The name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.InsertModificationStoredProcedureConfiguration<TEntityType>

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


InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter Method (Expression<Func<TEntityType, DbGeography>>, String)

Configures a parameter for this stored procedure.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public InsertModificationStoredProcedureConfiguration<TEntityType> Parameter(
	Expression<Func<TEntityType, DbGeography>> propertyExpression,
	string parameterName
)

Parameters

propertyExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, DbGeography>>

A lambda expression representing the property to configure the parameter for. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

The name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.InsertModificationStoredProcedureConfiguration<TEntityType>

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


InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter Method (Expression<Func<TEntityType, DbGeometry>>, String)

Configures a parameter for this stored procedure.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public InsertModificationStoredProcedureConfiguration<TEntityType> Parameter(
	Expression<Func<TEntityType, DbGeometry>> propertyExpression,
	string parameterName
)

Parameters

propertyExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, DbGeometry>>

A lambda expression representing the property to configure the parameter for. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

The name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.InsertModificationStoredProcedureConfiguration<TEntityType>

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


InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter Method (Expression<Func<TEntityType, String>>, String)

Configures a parameter for this stored procedure.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public InsertModificationStoredProcedureConfiguration<TEntityType> Parameter(
	Expression<Func<TEntityType, string>> propertyExpression,
	string parameterName
)

Parameters

propertyExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, String>>

A lambda expression representing the property to configure the parameter for. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

The name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.InsertModificationStoredProcedureConfiguration<TEntityType>

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


InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter<TProperty> Method (Expression<Func<TEntityType, TProperty>>, String)

Configures a parameter for this stored procedure.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public InsertModificationStoredProcedureConfiguration<TEntityType> Parameter<TProperty>(
	Expression<Func<TEntityType, TProperty>> propertyExpression,
	string parameterName
)
where TProperty : struct

Parameters

propertyExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, TProperty>>

A lambda expression representing the property to configure the parameter for. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

The name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.InsertModificationStoredProcedureConfiguration<TEntityType>

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

Type Parameters

TProperty

The type of the property to configure.


InsertModificationStoredProcedureConfiguration<TEntityType>.Parameter<TProperty> Method (Expression<Func<TEntityType, Nullable<TProperty>>>, String)

Configures a parameter for this stored procedure.

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public InsertModificationStoredProcedureConfiguration<TEntityType> Parameter<TProperty>(
	Expression<Func<TEntityType, Nullable<TProperty>>> propertyExpression,
	string parameterName
)
where TProperty : struct

Parameters

propertyExpression
Type: System.Linq.Expressions.Expression<Func<TEntityType, Nullable<TProperty>>>

A lambda expression representing the property to configure the parameter for. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

The name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.InsertModificationStoredProcedureConfiguration<TEntityType>

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

Type Parameters

TProperty

The type of the property to configure.