I am implementing a server-side filter in the PQ grid. I'm able to fetch the pq_filter from the client-side but am not able to deserialize it into an object. I found some reference code from the documentation. I am using ASP.NET Core 5 for server side.
String filterQuery = "";
List<object> filterParam=new List<object>();
if (pq_filter!=null && pq_filter.Length > 0)
{
deSerializedFilter dsf = FilterHelper.deSerializeFilter(pq_filter);
filterQuery = dsf.query;
filterParam = dsf.param;
}
I am not able to find the reference for FilterHelper