ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.LeftKeyParameter Method

 

ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.LeftKeyParameter Method (Expression<Func<TEntityType, Byte[]>>, String)

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

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

Parameters

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

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

parameterName
Type: System.String

Name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>

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


ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.LeftKeyParameter Method (Expression<Func<TEntityType, String>>, String)

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

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

Parameters

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

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

parameterName
Type: System.String

Name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>

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


ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.LeftKeyParameter<TProperty> Method (Expression<Func<TEntityType, TProperty>>, String)

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

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType> LeftKeyParameter<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 be configured. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

Name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>

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

Type Parameters

TProperty

The type of the property to configure.


ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.LeftKeyParameter<TProperty> Method (Expression<Func<TEntityType, Nullable<TProperty>>>, String)

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

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType> LeftKeyParameter<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 be configured. C#: t =&gt; t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
Type: System.String

Name of the parameter.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>

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

Type Parameters

TProperty

The type of the property to configure.