DbExpressionBuilder.OuterApply メソッド

定義

オーバーロード

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

指定された入力セットの各要素に対して指定された適用式を 1 回評価する新しい DbApplyExpression を作成し、対応する入力と列を適用する行のコレクションを生成します。 適用対象の行が空のセットに評価され、列の適用値が null になります。

OuterApply(DbExpressionBinding, DbExpressionBinding)

指定された入力セットの各要素に対して指定された適用式を 1 回評価する新しい DbApplyExpression を作成し、対応する入力と列を適用する行のコレクションを生成します。 適用対象の行が空のセットに評価され、列の適用値が null になります。

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

指定された入力セットの各要素に対して指定された適用式を 1 回評価する新しい 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>>

入力セットのメンバーごとに 1 回評価するロジックを指定するメソッド。

戻り値

入力とバインディングの適用が指定され、OuterApply の DbExpressionKind が設定された新しい DbApplyExpression。

属性

例外

apply の結果には、null である名前または式が含まれます。

apply の結果には、式バインドで無効な名前または式が含まれています。

適用対象

OuterApply(DbExpressionBinding, DbExpressionBinding)

指定された入力セットの各要素に対して指定された適用式を 1 回評価する新しい 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

入力セットのメンバーごとに 1 回評価するロジックを指定する DbExpressionBinding

戻り値

入力とバインディングの適用が指定され、OuterApply の DbExpressionKind が設定された新しい DbApplyExpression。

例外

input または apply が null です。

適用対象