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
、ラムダから簡単に作成できるオブジェクトの拡張です。
そのような表現で、あなたはできる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
句内で使用できます。試してみる :)