DbExpressionBuilder.All メソッド

定義

オーバーロード

All(DbExpression, Func<DbExpression,DbExpression>)

指定された述語が入力セットのすべての要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。

All(DbExpressionBinding, DbExpression)

指定された述語が入力セットのすべての要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。

All(DbExpression, Func<DbExpression,DbExpression>)

指定された述語が入力セットのすべての要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。

public static System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression All (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Data.Entity.Core.Common.CommandTrees.DbExpression> predicate);
static member All : System.Data.Entity.Core.Common.CommandTrees.DbExpression * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Data.Entity.Core.Common.CommandTrees.DbExpression> -> System.Data.Entity.Core.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。

例外

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

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

適用対象

All(DbExpressionBinding, DbExpression)

指定された述語が入力セットのすべての要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。

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

パラメーター

input
DbExpressionBinding

入力セットを指定する式バインディング。

predicate
DbExpression

入力セットのメンバーごとに評価する述語を表す式。

戻り値

All 操作を表す新しい DbQuantifierExpression。

例外

入力または述語が null です。

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

適用対象