Share via


ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.RightKeyParameter Method

Definition

Overloads

RightKeyParameter(Expression<Func<TTargetEntityType,Byte[]>>, String)

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

RightKeyParameter(Expression<Func<TTargetEntityType,String>>, String)

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

RightKeyParameter<TProperty>(Expression<Func<TTargetEntityType,Nullable<TProperty>>>, String)

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

RightKeyParameter<TProperty>(Expression<Func<TTargetEntityType,TProperty>>, String)

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

RightKeyParameter(Expression<Func<TTargetEntityType,Byte[]>>, String)

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

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

Parameters

propertyExpression
Expression<Func<TTargetEntityType,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

RightKeyParameter(Expression<Func<TTargetEntityType,String>>, String)

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

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

Parameters

propertyExpression
Expression<Func<TTargetEntityType,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

RightKeyParameter<TProperty>(Expression<Func<TTargetEntityType,Nullable<TProperty>>>, String)

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

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

RightKeyParameter<TProperty>(Expression<Func<TTargetEntityType,TProperty>>, String)

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

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

Type Parameters

TProperty

The type of the property to configure.

Parameters

propertyExpression
Expression<Func<TTargetEntityType,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