您可能喜欢尝试LinqKit。有了这个库,你就有了一个PredicateBuilder
带有方法的类:
public static Expression<Func<T, bool>> True<T>();
public static Expression<Func<T, bool>> False<T>();
public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> expr1, Expression<Func<T, bool>> expr2);
public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> expr1, Expression<Func<T, bool>> expr2);
这些是Expression
对象的扩展,可以从 lambda 轻松创建。
有了这样的表情你就可以做到yourDataSource.Where(expression)
。
对不起 c# 符号,我不知道 VB.net ...如果有人想将它修复到 VB,请随意。
编辑:
好吧,PredicateBuilder
只是一个简洁的语法糖。在他们的网站上,您可以找到非常简单的完整源代码。不幸的是,在 C# 中。它是这样的:
using System;
using System.Linq;
using System.Linq.Expressions;
using System.Collections.Generic;
public static class PredicateBuilder
{
public static Expression<Func<T, bool>> True<T> () { return f => true; }
public static Expression<Func<T, bool>> False<T> () { return f => false; }
public static Expression<Func<T, bool>> Or<T> (this Expression<Func<T, bool>> expr1,
Expression<Func<T, bool>> expr2)
{
var invokedExpr = Expression.Invoke (expr2, expr1.Parameters.Cast<Expression> ());
return Expression.Lambda<Func<T, bool>>
(Expression.OrElse (expr1.Body, invokedExpr), expr1.Parameters);
}
public static Expression<Func<T, bool>> And<T> (this Expression<Func<T, bool>> expr1,
Expression<Func<T, bool>> expr2)
{
var invokedExpr = Expression.Invoke (expr2, expr1.Parameters.Cast<Expression> ());
return Expression.Lambda<Func<T, bool>>
(Expression.AndAlso (expr1.Body, invokedExpr), expr1.Parameters);
}
}
就是这样!表达式(在 .net 中是标准的,不需要额外的库)提供了一些很好的方法来处理它们,它们可以在where
子句中使用。试试看 :)