Ale*_*ran 3 c# lambda func expression-trees
DisplayNameFor(x=>x.Title)ASP.Net MVC 中有一个助手。我想实现类似的行为。
我想要一个方法,它接受基于User类(u=>u.Birthdate或 u=>u.Name)的表达式、一个操作数(更大、更少、等于)和一个类似的值DateTime.Now并返回一个表达式 u=>u.Birthdate > DateTime.Now
我知道我必须从片段手动构建结果表达式。我无法理解的是传入和处理属性表达式。
编辑:
我想调用一个方法,如
GetFilterPredicate(u=>u.Birthdate,FilterOps.GreaterThan,DateTime.Parse("01.01.2013")
或
GetFilterPredicate(u=>u.SomeIntProperty,FilterOps.Equals,2)
更新:我已经创建了一个 repo 来解决这个问题以及一个集合属性过滤 https://github.com/Alexander-Taran/Lambda-Magic-Filters
这是否满足您的需求?
[TestClass]
public class UnitTest1
{
public Expression<Predicate<T>> GetFilterPredicate<T, R>(Expression<Func<T, R>> selector, FilterOps operand, R value)
{
var parameter = selector.Parameters[0];
var left = selector.Body;
var right = Expression.Constant(value);
var binaryExpression = Expression.MakeBinary(operand.ToExpressionType(), left, right);
return Expression.Lambda<Predicate<T>>(binaryExpression, parameter);
}
[TestMethod]
public void TestMethod1()
{
var p1 = this.GetFilterPredicate((User u) => u.Birthday.TimeOfDay.Hours, FilterOps.LessThan, 12);
var p2 = this.GetFilterPredicate((User u) => u.Size, FilterOps.Equal, 180);
var user = new User() { Birthday = new DateTime(2000, 1, 1), Size = 180 };
Assert.IsTrue(p1.Compile()(user));
Assert.IsTrue(p2.Compile()(user));
}
}
public enum FilterOps
{
GreaterThan, LessThan, Equal
}
public static class MyExtensions
{
public static ExpressionType ToExpressionType(this FilterOps operand)
{
switch (operand)
{
case FilterOps.GreaterThan: return ExpressionType.GreaterThan;
case FilterOps.LessThan: return ExpressionType.LessThan;
case FilterOps.Equal: return ExpressionType.Equal;
default: throw new NotSupportedException();
}
}
}
public class User { public DateTime Birthday { get; set; } public int Size { get; set; } }
Run Code Online (Sandbox Code Playgroud)