DbExpressionBuilder.Any メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Any(DbExpression) |
指定されたセット引数が空以外であるかどうかを確認する新しい DbExpression を作成します。 |
Any(DbExpression, Func<DbExpression,DbExpression>) |
指定された述語が入力セットのいずれかの要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。 |
Any(DbExpressionBinding, DbExpression) |
指定された述語が入力セットのいずれかの要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。 |
Any(DbExpression)
指定されたセット引数が空以外であるかどうかを確認する新しい DbExpression を作成します。
public static System.Data.Entity.Core.Common.CommandTrees.DbExpression Any (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source);
static member Any : System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbExpression
<Extension()>
Public Function Any (source As DbExpression) As DbExpression
パラメーター
- source
- DbExpression
入力セットを指定する式。
戻り値
指定された引数を持つ新しい DbNotExpression に適用される新しい DbIsEmptyExpression。
例外
source が null です。
source にコレクションの結果の型がありません。
適用対象
Any(DbExpression, Func<DbExpression,DbExpression>)
指定された述語が入力セットのいずれかの要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。
public static System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression Any (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 Any : 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 Any (source As DbExpression, predicate As Func(Of DbExpression, DbExpression)) As DbQuantifierExpression
パラメーター
- source
- DbExpression
入力セットを指定する式。
- predicate
- Func<DbExpression,DbExpression>
入力セットのメンバーごとに評価する述語を表すメソッド。 このメソッドは、述語のロジックを備え、ブール型の結果を返す式を生成する必要があります。
戻り値
Any 操作を表す新しい DbQuantifierExpression。
例外
述語によって生成される式が null です。
述語によって生成される式にブール値の結果型がありません。
適用対象
Any(DbExpressionBinding, DbExpression)
指定された述語が入力セットのいずれかの要素に当てはまるかどうかを確認する新しい DbQuantifierExpression を作成します。
public static System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression Any (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Data.Entity.Core.Common.CommandTrees.DbExpression predicate);
static member Any : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function Any (input As DbExpressionBinding, predicate As DbExpression) As DbQuantifierExpression
パラメーター
- input
- DbExpressionBinding
入力セットを指定する式バインディング。
- predicate
- DbExpression
入力セットのメンバーごとに評価する述語を表す式。
戻り値
Any 操作を表す新しい DbQuantifierExpression。
例外
入力または述語が null です。
述語によって生成される式にブール値の結果型がありません。
適用対象
Entity Framework