This question is locked. New answers and comments are not allowed.
Hi, I would like to initialize the grid filter using a GridCommand, for that I need to create an Expression Tree of type Expression<Func<T, string>> so a can pass it to the .Add method:
grid.Filters(y => y.Add(HERE))
Does anyone knows how to create this expression tree using System.Linq.Expression instead of passing a lambda expression?