ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.RightKeyParameter 方法

定义

重载

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

为正确的键值配置参数, () 。

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

参数

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

表示要配置的属性的 lambda 表达式。 C#: t => t.MyProperty VB.Net: Function (t) t.MyProperty

parameterName
String

参数的名称。

返回

相同的配置实例,以便可以链接多个调用。

属性

适用于

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

为正确的键值配置参数, () 。

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

参数

propertyExpression
Expression<Func<TTargetEntityType,String>>

表示要配置的属性的 lambda 表达式。 C#: t => t.MyProperty VB.Net: Function (t) t.MyProperty

parameterName
String

参数的名称。

返回

相同的配置实例,以便可以链接多个调用。

属性

适用于

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

为正确的键值配置参数, () 。

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

类型参数

TProperty

要配置的属性的类型。

参数

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

表示要配置的属性的 lambda 表达式。 C#: t => t.MyProperty VB.Net: Function (t) t.MyProperty

parameterName
String

参数的名称。

返回

相同的配置实例,以便可以链接多个调用。

属性

适用于

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

为正确的键值配置参数, () 。

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

类型参数

TProperty

要配置的属性的类型。

参数

propertyExpression
Expression<Func<TTargetEntityType,TProperty>>

表示要配置的属性的 lambda 表达式。 C#: t => t.MyProperty VB.Net: Function (t) t.MyProperty

parameterName
String

参数的名称。

返回

相同的配置实例,以便可以链接多个调用。

属性

适用于