ManyToManyModificationStoredProcedureConfiguration<TEntityType,TTargetEntityType>.LeftKeyParameter 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
LeftKeyParameter(Expression<Func<TEntityType,Byte[]>>, String) |
왼쪽 키 값에 대한 매개 변수를 구성합니다. |
LeftKeyParameter(Expression<Func<TEntityType,String>>, String) |
왼쪽 키 값에 대한 매개 변수를 구성합니다. |
LeftKeyParameter<TProperty>(Expression<Func<TEntityType,Nullable<TProperty>>>, String) |
왼쪽 키 값에 대한 매개 변수를 구성합니다. |
LeftKeyParameter<TProperty>(Expression<Func<TEntityType,TProperty>>, String) |
왼쪽 키 값에 대한 매개 변수를 구성합니다. |
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[]>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
매개 변수의 이름입니다.
반환
여러 호출을 연결할 수 있도록 동일한 구성이 instance.
- 특성
적용 대상
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>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
매개 변수의 이름입니다.
반환
여러 호출을 연결할 수 있도록 동일한 구성이 instance.
- 특성
적용 대상
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>>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
매개 변수의 이름입니다.
반환
여러 호출을 연결할 수 있도록 동일한 구성이 instance.
- 특성
적용 대상
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>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
- parameterName
- String
매개 변수의 이름입니다.
반환
여러 호출을 연결할 수 있도록 동일한 구성이 instance.
- 특성
적용 대상
Entity Framework