DbExpressionBuilder.Filter(DbExpressionBinding, DbExpression) 方法

定义

创建一个新的 DbFilterExpression,它使用指定的谓词筛选给定输入集中的元素。

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

参数

input
DbExpressionBinding

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

predicate
DbExpression

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

返回

新的 DbFilterExpression 产生筛选的程序集。

例外

inputpredicate 为 null。

predicate 没有布尔结果类型。

适用于