You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Gridify in a Blazor WASM application, right now I am having to build out the GridifyQuery filter & order strings by hand.
I think it would be nice if I could utilize the QueryBuilder which would contain a method that can build the instance of the QueryBuilder into a GridifyQuery using all the conditions etc that I provided to the builder.
The text was updated successfully, but these errors were encountered:
I don't think QueryBuilder is the best option for constructing the query, as it also manages the Mapper and other configurations. I'm not quite sure what problem you're trying to solve—if you're building the query on the client side, why do you need the GridifyQuery object? You could pass the QueryBuilder object around instead.
It would be great if you could explain a bit more or provide some code examples to clarify what you're trying to achieve.
Details
I am using Gridify in a Blazor WASM application, right now I am having to build out the GridifyQuery filter & order strings by hand.
I think it would be nice if I could utilize the
QueryBuilder
which would contain a method that can build the instance of the QueryBuilder into aGridifyQuery
using all the conditions etc that I provided to the builder.The text was updated successfully, but these errors were encountered: