Share via


ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.LeftKeyParameter Method

Definition

Overloads

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).

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

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType> LeftKeyParameter (System.Linq.Expressions.Expression<Func<TEntityType,byte[]>> propertyExpression, string parameterName);
member this.LeftKeyParameter : System.Linq.Expressions.Expression<Func<'EntityType, byte[]>> * string -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)>
Public Function LeftKeyParameter (propertyExpression As Expression(Of Func(Of TEntityType, Byte())), parameterName As String) As ManyToManyModificationStoredProcedureConfiguration(Of TEntityType, TTargetEntityType)

Parameters

propertyExpression
Expression<Func<TEntityType,Byte[]>>

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

parameterName
String

Name of the parameter.

Returns

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

Attributes

Applies to

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

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType> LeftKeyParameter (System.Linq.Expressions.Expression<Func<TEntityType,string>> propertyExpression, string parameterName);
member this.LeftKeyParameter : System.Linq.Expressions.Expression<Func<'EntityType, string>> * string -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)>
Public Function LeftKeyParameter (propertyExpression As Expression(Of Func(Of TEntityType, String)), parameterName As String) As ManyToManyModificationStoredProcedureConfiguration(Of TEntityType, TTargetEntityType)

Parameters

propertyExpression
Expression<Func<TEntityType,String>>

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

parameterName
String

Name of the parameter.

Returns

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

Attributes

Applies to

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

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType> LeftKeyParameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<TProperty>>> propertyExpression, string parameterName) where TProperty : struct;
member this.LeftKeyParameter : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<'Property>>> * string -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)> (requires 'Property : struct)
Public Function LeftKeyParameter(Of TProperty As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of TProperty))), parameterName As String) As ManyToManyModificationStoredProcedureConfiguration(Of TEntityType, TTargetEntityType)

Type Parameters

TProperty

The type of the property to configure.

Parameters

propertyExpression
Expression<Func<TEntityType,Nullable<TProperty>>>

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

parameterName
String

Name of the parameter.

Returns

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

Attributes

Applies to

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

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType> LeftKeyParameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntityType,TProperty>> propertyExpression, string parameterName) where TProperty : struct;
member this.LeftKeyParameter : System.Linq.Expressions.Expression<Func<'EntityType, 'Property>> * string -> System.Data.Entity.ModelConfiguration.Configuration.ManyToManyModificationStoredProcedureConfiguration<'EntityType, 'argetEntityType (requires 'EntityType : null and 'argetEntityType : null)> (requires 'Property : struct)
Public Function LeftKeyParameter(Of TProperty As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, TProperty)), parameterName As String) As ManyToManyModificationStoredProcedureConfiguration(Of TEntityType, TTargetEntityType)

Type Parameters

TProperty

The type of the property to configure.

Parameters

propertyExpression
Expression<Func<TEntityType,TProperty>>

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

parameterName
String

Name of the parameter.

Returns

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

Attributes

Applies to