DbExpressionBuilder.OuterApply メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
特定の入力セットの各要素につき 1 回、指定された apply
式を評価し、対応する入力列と適用列を持った行のコレクションを生成する新しい DbApplyExpression を作成します。
オーバーロード
OuterApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>) |
特定の入力セットの各要素につき 1 回、指定された |
OuterApply(DbExpressionBinding, DbExpressionBinding) |
特定の入力セットの各要素につき 1 回、指定された |
OuterApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)
特定の入力セットの各要素につき 1 回、指定された apply
式を評価し、対応する入力列と適用列を持った行のコレクションを生成する新しい DbApplyExpression を作成します。 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
入力セットを指定する DbExpression。
- apply
- Func<DbExpression,KeyValuePair<String,DbExpression>>
入力セットのメンバーごとに 1 回評価するロジックを指定するメソッド。
戻り値
入力とバインディングの適用が指定され、OuterApply の DbExpressionKind が設定された新しい DbApplyExpression。
例外
適用対象
OuterApply(DbExpressionBinding, DbExpressionBinding)
特定の入力セットの各要素につき 1 回、指定された apply
式を評価し、対応する入力列と適用列を持った行のコレクションを生成する新しい DbApplyExpression を作成します。 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
入力セットのメンバーごとに 1 回評価するロジックを指定する DbExpressionBinding。
戻り値
入力とバインディングの適用が指定され、OuterApply の DbExpressionKind が設定された新しい DbApplyExpression。
例外
input
または apply
が null です。
適用対象
.NET