DbExpressionBuilder.Any 方法

定义

创建一个新的 DbExpression,它确定指定的集参数是否非空。

重载

Any(DbExpression)

创建一个新的 DbExpression,它确定指定的集参数是否非空。

Any(DbExpression, Func<DbExpression,DbExpression>)

创建一个新的 DbQuantifierExpression,该对象确定是否为输入集的任何元素保留给定的谓词。

Any(DbExpressionBinding, DbExpression)

创建一个新的 DbQuantifierExpression,该对象确定是否为输入集的任何元素保留给定的谓词。

Any(DbExpression)

创建一个新的 DbExpression,它确定指定的集参数是否非空。

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

参数

source
DbExpression

一个指定输入集的表达式。

predicate
Func<DbExpression,DbExpression>

一个方法,表示要针对每个输入集成员计算的谓词。 此方法必须生成一个结果类型为 Boolean 的表达式,该表达式提供谓词逻辑。

返回

新 DbQuantifierExpression 表示任何操作。

例外

sourcepredicate 为 null。

- 或 -

predicate 生成的表达式为 null。

source 没有集合结果类型。

- 或 -

predicate 生成的表达式不具有布尔结果类型。

适用于

Any(DbExpressionBinding, DbExpression)

创建一个新的 DbQuantifierExpression,该对象确定是否为输入集的任何元素保留给定的谓词。

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

参数

input
DbExpressionBinding

一个指定输入集的表达式绑定。

predicate
DbExpression

一个表达式,表示要针对每个输入集成员计算的谓词。

返回

新 DbQuantifierExpression 表示任何操作。

例外

inputpredicate 为 null。

predicate 生成的表达式不具有布尔结果类型。

适用于