DbExpressionBuilder.OuterApply 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
OuterApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>) |
지정된 입력 집합의 각 요소에 대해 지정된 적용 식을 한 번 평가하는 새 DbApplyExpression 를 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 적용이 빈 집합으로 계산되는 행에는 적용 열 값이 null입니다. |
OuterApply(DbExpressionBinding, DbExpressionBinding) |
지정된 입력 집합의 각 요소에 대해 지정된 적용 식을 한 번 평가하는 새 DbApplyExpression 를 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 적용이 빈 집합으로 계산되는 행에는 적용 열 값이 null입니다. |
OuterApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)
지정된 입력 집합의 각 요소에 대해 지정된 적용 식을 한 번 평가하는 새 DbApplyExpression 를 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 적용이 빈 집합으로 계산되는 행에는 적용 열 값이 null입니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression OuterApply (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Collections.Generic.KeyValuePair<string,System.Data.Entity.Core.Common.CommandTrees.DbExpression>> apply);
static member OuterApply : System.Data.Entity.Core.Common.CommandTrees.DbExpression * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Entity.Core.Common.CommandTrees.DbExpression>> -> System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function OuterApply (source As DbExpression, apply As Func(Of DbExpression, KeyValuePair(Of String, DbExpression))) As DbApplyExpression
매개 변수
- source
- DbExpression
입력 집합을 지정하는 DbExpression입니다.
- apply
- Func<DbExpression,KeyValuePair<String,DbExpression>>
입력 집합의 각 멤버에 대해 한 번씩 확인할 논리를 지정하는 메서드입니다.
반환
지정된 입력 및 적용 바인딩과 OuterApply의 DbExpressionKind를 사용하는 새 DbApplyExpression입니다.
- 특성
예외
apply의 결과에는 null인 이름 또는 식이 포함됩니다.
apply의 결과에는 식 바인딩에서 유효하지 않은 이름 또는 식이 포함됩니다.
적용 대상
OuterApply(DbExpressionBinding, DbExpressionBinding)
지정된 입력 집합의 각 요소에 대해 지정된 적용 식을 한 번 평가하는 새 DbApplyExpression 를 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 적용이 빈 집합으로 계산되는 행에는 적용 열 값이 null입니다.
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression OuterApply (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding apply);
static member OuterApply : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding -> System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function OuterApply (input As DbExpressionBinding, apply As DbExpressionBinding) As DbApplyExpression
매개 변수
- input
- DbExpressionBinding
입력 집합을 지정하는 DbExpressionBinding입니다.
- apply
- DbExpressionBinding
입력 집합의 각 멤버에 대해 한 번씩 확인할 논리를 지정하는 DbExpressionBinding입니다.
반환
지정된 입력 및 적용 바인딩과 OuterApply의 DbExpressionKind를 사용하는 새 DbApplyExpression입니다.
예외
input 또는 apply가 null입니다.
적용 대상
Entity Framework