I'm trying to use the RadFilter to get the expression tree so that I can use it in a Linq Where clause.
In WPF, I can use the DataFilter control to do this:
Is it possible to do the same kind of thing with the RadFilter? In the ApplyExpressions event I can get the e.ExpressionRoot.Expressions property but I can't see a way to convert that to anything usable by Linq.
In WPF, I can use the DataFilter control to do this:
(IQueryable<SomeModel>)theContext.SomeModel.Where(theDataFilter.FilterDescriptors);