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