DbExpressionBuilder.All メソッド

定義

指定した述語が入力セットのすべての要素を保持するかどうかを決定する新しい DbQuantifierExpression を作成します。

オーバーロード

名前 説明
All(DbExpression, Func<DbExpression,DbExpression>)

指定した述語が入力セットのすべての要素を保持するかどうかを決定する新しい DbQuantifierExpression を作成します。

All(DbExpressionBinding, DbExpression)

指定した述語が入力セットのすべての要素を保持するかどうかを決定する新しい DbQuantifierExpression を作成します。

All(DbExpression, Func<DbExpression,DbExpression>)

指定した述語が入力セットのすべての要素を保持するかどうかを決定する新しい DbQuantifierExpression を作成します。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbQuantifierExpression ^ All(System::Data::Common::CommandTrees::DbExpression ^ source, Func<System::Data::Common::CommandTrees::DbExpression ^, System::Data::Common::CommandTrees::DbExpression ^> ^ predicate);
public static System.Data.Common.CommandTrees.DbQuantifierExpression All(this System.Data.Common.CommandTrees.DbExpression source, Func<System.Data.Common.CommandTrees.DbExpression,System.Data.Common.CommandTrees.DbExpression> predicate);
static member All : System.Data.Common.CommandTrees.DbExpression * Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> -> System.Data.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function All (source As DbExpression, predicate As Func(Of DbExpression, DbExpression)) As DbQuantifierExpression

パラメーター

source
DbExpression

入力セットを指定する式。

predicate
Func<DbExpression,DbExpression>

入力セットの各メンバーについて評価する述語を表すメソッド。 このメソッドは、述語ロジックを提供するブール値の結果型を持つ式を生成する必要があります。

返品

All 操作を表す新しい DbQuantifierExpression。

例外

source または predicate が null です。

-又は-

predicateによって生成される式が null です。

source にはコレクションの結果の型がありません。

-又は-

predicateによって生成される式にブール値の結果型がありません。

適用対象

All(DbExpressionBinding, DbExpression)

指定した述語が入力セットのすべての要素を保持するかどうかを決定する新しい DbQuantifierExpression を作成します。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbQuantifierExpression ^ All(System::Data::Common::CommandTrees::DbExpressionBinding ^ input, System::Data::Common::CommandTrees::DbExpression ^ predicate);
public static System.Data.Common.CommandTrees.DbQuantifierExpression All(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate);
static member All : System.Data.Common.CommandTrees.DbExpressionBinding * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function All (input As DbExpressionBinding, predicate As DbExpression) As DbQuantifierExpression

パラメーター

input
DbExpressionBinding

入力セットを指定する式バインド。

predicate
DbExpression

入力セットの各メンバーについて評価する述語を表す式。

返品

All 操作を表す新しい DbQuantifierExpression。

例外

input または predicate が null です。

predicate にはブール値の結果型がありません。

適用対象