DbExpressionBuilder.CrossApply メソッド (DbExpressionBinding, DbExpressionBinding)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
特定の入力セットの各要素につき 1 回、指定された apply 式を評価し、対応する入力列と適用列を持った行のコレクションを生成する新しい DbApplyExpression を作成します。 apply で空のセットに評価される行は含まれません。
名前空間: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<ExtensionAttribute> _
Public Shared Function CrossApply ( _
input As DbExpressionBinding, _
apply As DbExpressionBinding _
) As DbApplyExpression
'使用
Dim input As DbExpressionBinding
Dim apply As DbExpressionBinding
Dim returnValue As DbApplyExpression
returnValue = input.CrossApply(apply)
public static DbApplyExpression CrossApply(
this DbExpressionBinding input,
DbExpressionBinding apply
)
[ExtensionAttribute]
public:
static DbApplyExpression^ CrossApply(
DbExpressionBinding^ input,
DbExpressionBinding^ apply
)
static member CrossApply :
input:DbExpressionBinding *
apply:DbExpressionBinding -> DbApplyExpression
public static function CrossApply(
input : DbExpressionBinding,
apply : DbExpressionBinding
) : DbApplyExpression
パラメーター
- input
型 : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding
入力セットを指定する DbExpressionBinding。
- apply
型 : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding
入力セットのメンバーごとに 1 回評価するロジックを指定する DbExpressionBinding。
戻り値
型 : System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
入力とバインディングの適用が指定され、CrossApply の DbExpressionKind が設定された新しい DbApplyExpression。
使用上の注意
Visual Basic および Visual C# では、このメソッドを、DbExpressionBinding 型のオブジェクトのインスタンス メソッドとして呼び出すことができます。インスタンス メソッド構文を使用してこのメソッドを呼び出す場合は、最初のパラメーターを省略します。詳細については、「https://msdn.microsoft.com/ja-jp/library/bb384936(v=vs.113)」または「https://msdn.microsoft.com/ja-jp/library/bb383977(v=vs.113)」を参照してください。
例外
例外 | 状態 |
---|---|
ArgumentNullException | input または apply が null です。 |
参照
参照
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 名前空間