次の方法で共有


DbExpressionBuilder.All メソッド (DbExpressionBinding, DbExpression)

[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]

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

名前空間:  System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
アセンブリ:  EntityFramework (EntityFramework.dll 内)

構文

'宣言
<ExtensionAttribute> _
Public Shared Function All ( _
    input As DbExpressionBinding, _
    predicate As DbExpression _
) As DbQuantifierExpression
'使用
Dim input As DbExpressionBinding 
Dim predicate As DbExpression 
Dim returnValue As DbQuantifierExpression 

returnValue = input.All(predicate)
public static DbQuantifierExpression All(
    this DbExpressionBinding input,
    DbExpression predicate
)
[ExtensionAttribute]
public:
static DbQuantifierExpression^ All(
    DbExpressionBinding^ input, 
    DbExpression^ predicate
)
static member All : 
        input:DbExpressionBinding * 
        predicate:DbExpression -> DbQuantifierExpression
public static function All(
    input : DbExpressionBinding, 
    predicate : DbExpression
) : DbQuantifierExpression

パラメーター

戻り値

型 : System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression
All 操作を表す新しい DbQuantifierExpression。

使用上の注意

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

source または predicate が null です。

ArgumentException

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

参照

参照

DbExpressionBuilder クラス

All オーバーロード

System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 名前空間