Partager via


ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.LeftKeyParameter Méthode

Définition

Surcharges

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Paramètres

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

Expression lambda représentant la propriété à configurer. C# : t => t.MyProperty VB.Net : Function(t) t.MyProperty

parameterName
String

Nom du paramètre.

Retours

La même configuration instance afin que plusieurs appels puissent être chaînés.

Attributs

S’applique à

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Paramètres

propertyExpression
Expression<Func<TEntityType,String>>

Expression lambda représentant la propriété à configurer. C# : t => t.MyProperty VB.Net : Function(t) t.MyProperty

parameterName
String

Nom du paramètre.

Retours

La même configuration instance afin que plusieurs appels puissent être chaînés.

Attributs

S’applique à

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Paramètres de type

TProperty

Type de la propriété à configurer.

Paramètres

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

Expression lambda représentant la propriété à configurer. C# : t => t.MyProperty VB.Net : Function(t) t.MyProperty

parameterName
String

Nom du paramètre.

Retours

La même configuration instance afin que plusieurs appels puissent être chaînés.

Attributs

S’applique à

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

Configure le paramètre pour la ou les valeurs de clé de gauche.

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

Paramètres de type

TProperty

Type de la propriété à configurer.

Paramètres

propertyExpression
Expression<Func<TEntityType,TProperty>>

Expression lambda représentant la propriété à configurer. C# : t => t.MyProperty VB.Net : Function(t) t.MyProperty

parameterName
String

Nom du paramètre.

Retours

La même configuration instance afin que plusieurs appels puissent être chaînés.

Attributs

S’applique à