DbExpressionBuilder.OuterApply 메서드

정의

지정된 입력 집합의 각 요소에 대해 지정된 DbApplyExpression 식을 한 번 평가하는 새 apply 식을 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다.

오버로드

Name Description
OuterApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)

지정된 입력 집합의 각 요소에 대해 지정된 DbApplyExpression 식을 한 번 평가하는 새 apply 식을 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 빈 집합으로 계산되는 apply 행에는 적용 열 값이 null있습니다.

OuterApply(DbExpressionBinding, DbExpressionBinding)

지정된 입력 집합의 각 요소에 대해 지정된 DbApplyExpression 식을 한 번 평가하는 새 apply 식을 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 빈 집합으로 계산되는 apply 행에는 적용 열 값이 null있습니다.

OuterApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)

지정된 입력 집합의 각 요소에 대해 지정된 DbApplyExpression 식을 한 번 평가하는 새 apply 식을 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 빈 집합으로 계산되는 apply 행에는 적용 열 값이 null있습니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbApplyExpression ^ OuterApply(System::Data::Common::CommandTrees::DbExpression ^ source, Func<System::Data::Common::CommandTrees::DbExpression ^, System::Collections::Generic::KeyValuePair<System::String ^, System::Data::Common::CommandTrees::DbExpression ^>> ^ apply);
public static System.Data.Common.CommandTrees.DbApplyExpression OuterApply(this System.Data.Common.CommandTrees.DbExpression source, Func<System.Data.Common.CommandTrees.DbExpression,System.Collections.Generic.KeyValuePair<string,System.Data.Common.CommandTrees.DbExpression>> apply);
static member OuterApply : System.Data.Common.CommandTrees.DbExpression * Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> -> System.Data.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function OuterApply (source As DbExpression, apply As Func(Of DbExpression, KeyValuePair(Of String, DbExpression))) As DbApplyExpression

매개 변수

source
DbExpression

입력 집합을 지정하는 A DbExpression 입니다.

apply
Func<DbExpression,KeyValuePair<String,DbExpression>>

입력 집합의 각 멤버에 대해 한 번 평가할 논리를 지정하는 메서드입니다.

반품

지정된 입력 및 적용 바인딩 및 OuterApply를 사용하는 DbExpressionKind 새 DbApplyExpression입니다.

예외

source 또는 apply null입니다.

-또는-

결과는 apply null인 이름 또는 식을 포함합니다.

source 컬렉션 결과 형식이 없습니다.

-또는-

결과는 apply 식 바인딩에서 유효하지 않은 이름 또는 식을 포함합니다.

적용 대상

OuterApply(DbExpressionBinding, DbExpressionBinding)

지정된 입력 집합의 각 요소에 대해 지정된 DbApplyExpression 식을 한 번 평가하는 새 apply 식을 만들어 해당 입력이 있는 행 컬렉션을 생성하고 열을 적용합니다. 빈 집합으로 계산되는 apply 행에는 적용 열 값이 null있습니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbApplyExpression ^ OuterApply(System::Data::Common::CommandTrees::DbExpressionBinding ^ input, System::Data::Common::CommandTrees::DbExpressionBinding ^ apply);
public static System.Data.Common.CommandTrees.DbApplyExpression OuterApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply);
static member OuterApply : System.Data.Common.CommandTrees.DbExpressionBinding * System.Data.Common.CommandTrees.DbExpressionBinding -> System.Data.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입니다.

적용 대상