I have an application that is connected to Sql Server and I am using Entity Framework Core 5 to handle the typical procedures like adding new objects, removing, etc. In my application, I have a section where a user can select from a list of checkboxes with fields in my database to show custom results. For example, if two checkboxes from different tables are selected, I would like a custom query built that returns results based on what boxes were selected.
I have looked at the RadDatFilter and don't want to use that approach. Is there an existing nuget package that can help create a custom query based on user input?
Thanks for any help or guidance.