Compartir a través de


ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.LeftKeyParameter Método

Definición

Sobrecargas

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

Configura el parámetro para los valores de clave izquierda.

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

Configura el parámetro para los valores de clave izquierda.

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

Configura el parámetro para los valores de clave izquierda.

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

Configura el parámetro para los valores de clave izquierda.

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

Configura el parámetro para los valores de clave izquierda.

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

Parámetros

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

Expresión lambda que representa la propiedad que se va a configurar. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
String

Nombre del parámetro.

Devoluciones

La misma instancia de configuración para que se puedan encadenar varias llamadas.

Atributos

Se aplica a

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

Configura el parámetro para los valores de clave izquierda.

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

Parámetros

propertyExpression
Expression<Func<TEntityType,String>>

Expresión lambda que representa la propiedad que se va a configurar. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
String

Nombre del parámetro.

Devoluciones

La misma instancia de configuración para que se puedan encadenar varias llamadas.

Atributos

Se aplica a

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

Configura el parámetro para los valores de clave izquierda.

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

Parámetros de tipo

TProperty

Tipo de la propiedad que se va a configurar.

Parámetros

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

Expresión lambda que representa la propiedad que se va a configurar. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
String

Nombre del parámetro.

Devoluciones

La misma instancia de configuración para que se puedan encadenar varias llamadas.

Atributos

Se aplica a

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

Configura el parámetro para los valores de clave izquierda.

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

Parámetros de tipo

TProperty

Tipo de la propiedad que se va a configurar.

Parámetros

propertyExpression
Expression<Func<TEntityType,TProperty>>

Expresión lambda que representa la propiedad que se va a configurar. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty

parameterName
String

Nombre del parámetro.

Devoluciones

La misma instancia de configuración para que se puedan encadenar varias llamadas.

Atributos

Se aplica a