This question is locked. New answers and comments are not allowed.
I'm having problem with using Telerik ExpressionBuilder, the scenario is depicted below: public class Vehicle { public int VehicleId { get; set; } public string VehicleName { get; set; } } So I can use in below way and works fine: IQueryable<Vehicle> data; // there are some values in 'data' variable data = data.Where(ExpressionBuilder.Expression<Vehicle>(filterDescriptors)); // filterDescriptors is object of IList<IFilterDescriptor> in TelerikBut in case of below scenario, it doesn't work: public class Vehicle { public Dictionary<string, string> DynamicProperties; } Trying to use below way(same as above), but doesn't work: IQueryable<Vehicle> data; // there are some values in 'data' variable data = data.Where(ExpressionBuilder.Expression<Vehicle>(filterDescriptors));Please suggest and help me with the above issue. **Thanks in advance**.