I have a requirement to create multiple quick filters on a table data in ASP.NET
razor pages application.
For example filters like Show only my issues
, Show issues from London location
etc.
I want to manage all these quick filters using a single route parameter FilterBy
which can make the url like this:
baseURL?FilterBy=OnlyMyIssues&FilterBy=LondonLocation
Can someone please help me with some way for this?