ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.LeftKeyParameter 方法

定义

重载

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

为左键值配置参数, () 。

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

参数

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

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

parameterName
String

参数的名称。

返回

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

属性

适用于

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

为左键值配置参数, () 。

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

参数

propertyExpression
Expression<Func<TEntityType,String>>

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

parameterName
String

参数的名称。

返回

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

属性

适用于

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

为左键值配置参数, () 。

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

类型参数

TProperty

要配置的属性的类型。

参数

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

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

parameterName
String

参数的名称。

返回

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

属性

适用于

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

为左键值配置参数, () 。

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

类型参数

TProperty

要配置的属性的类型。

参数

propertyExpression
Expression<Func<TEntityType,TProperty>>

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

parameterName
String

参数的名称。

返回

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

属性

适用于