So, I want to implement a page that searches the database for records. The url of the action should be something like "~/Mail/List/{PropertyName}/{PropertyValue}.
Property name and value are the corresponding entity property name to filter by and the value is the property value to match. The thing is that the entity contains properties of many types. Int, string, date.. etc.
The question is, how do I implement a dynamic search page or something like that to filter my queries?
Thanks!