ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.RightKeyParameter Method
Configures the parameter for the right key value(s).
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | 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, TProperty>>, 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). |
ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType>.RightKeyParameter Method (Expression<Func<TTargetEntityType, Byte[]>>, String)
Configures the parameter for the right key value(s).
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] public ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType> RightKeyParameter( Expression<Func<TTargetEntityType, byte[]>> propertyExpression, string parameterName )
Parameters
- propertyExpression
-
Type:
System.Linq.Expressions.Expression<Func<TTargetEntityType, Byte[]>>
A lambda expression representing the property to be configured. C#: t => 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>.RightKeyParameter Method (Expression<Func<TTargetEntityType, String>>, String)
Configures the parameter for the right key value(s).
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] public ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType> RightKeyParameter( Expression<Func<TTargetEntityType, string>> propertyExpression, string parameterName )
Parameters
- propertyExpression
-
Type:
System.Linq.Expressions.Expression<Func<TTargetEntityType, String>>
A lambda expression representing the property to be configured. C#: t => 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>.RightKeyParameter<TProperty> Method (Expression<Func<TTargetEntityType, TProperty>>, String)
Configures the parameter for the right key value(s).
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] public ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType> RightKeyParameter<TProperty>( Expression<Func<TTargetEntityType, TProperty>> propertyExpression, string parameterName ) where TProperty : struct
Parameters
- propertyExpression
-
Type:
System.Linq.Expressions.Expression<Func<TTargetEntityType, TProperty>>
A lambda expression representing the property to be configured. C#: t => 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>.RightKeyParameter<TProperty> Method (Expression<Func<TTargetEntityType, Nullable<TProperty>>>, String)
Configures the parameter for the right key value(s).
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] public ManyToManyModificationStoredProcedureConfiguration<TEntityType, TTargetEntityType> RightKeyParameter<TProperty>( Expression<Func<TTargetEntityType, Nullable<TProperty>>> propertyExpression, string parameterName ) where TProperty : struct
Parameters
- propertyExpression
-
Type:
System.Linq.Expressions.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
-
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.