DbExpressionBuilder.CrossApply メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CrossApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>) |
指定された入力セットの各要素に対して指定された apply 式を 1 回評価する新しい DbApplyExpression を作成し、対応する入力と列を適用する行のコレクションを生成します。 適用が空のセットに評価される行は含まれません。 |
CrossApply(DbExpressionBinding, DbExpressionBinding) |
指定された入力セットの各要素に対して指定された apply 式を 1 回評価する新しい DbApplyExpression を作成し、対応する入力と列を適用する行のコレクションを生成します。 適用が空のセットに評価される行は含まれません。 |
CrossApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)
指定された入力セットの各要素に対して指定された apply 式を 1 回評価する新しい DbApplyExpression を作成し、対応する入力と列を適用する行のコレクションを生成します。 適用が空のセットに評価される行は含まれません。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression CrossApply (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 CrossApply : 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 CrossApply (source As DbExpression, apply As Func(Of DbExpression, KeyValuePair(Of String, DbExpression))) As DbApplyExpression
パラメーター
- source
- DbExpression
入力セットを指定する DbExpression。
- apply
- Func<DbExpression,KeyValuePair<String,DbExpression>>
入力セットのメンバーごとに 1 回評価するロジックを指定するメソッド。
戻り値
入力とバインディングの適用が指定され、CrossApply の DbExpressionKind が設定された新しい DbApplyExpression。
- 属性
例外
apply の結果には、null である名前または式が含まれています。
apply の結果には、式バインドで無効な名前または式が含まれています。
適用対象
CrossApply(DbExpressionBinding, DbExpressionBinding)
指定された入力セットの各要素に対して指定された apply 式を 1 回評価する新しい DbApplyExpression を作成し、対応する入力と列を適用する行のコレクションを生成します。 適用が空のセットに評価される行は含まれません。
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression CrossApply (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding apply);
static member CrossApply : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding -> System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function CrossApply (input As DbExpressionBinding, apply As DbExpressionBinding) As DbApplyExpression
パラメーター
- input
- DbExpressionBinding
入力セットを指定する DbExpressionBinding。
- apply
- DbExpressionBinding
入力セットのメンバーごとに 1 回評価するロジックを指定する DbExpressionBinding。
戻り値
入力とバインディングの適用が指定され、CrossApply の DbExpressionKind が設定された新しい DbApplyExpression。
例外
input または apply が null です。
適用対象
Entity Framework