I'd like to implement some/any custom behavior for some data type, for example DateTime or int.
I've created a custom JsonConverter which encompasses data received from the body of a request (unless it was specified as non-json), which allows me to do just that.
But if data is passed in the query string of a request, for example ?param1=helloWorld¶m2=123", they are handled differently and are not covered by my custom JsonConverter.
I've read about creating/implementing my own Custom Model Binder, but those from the looks of it are for complex types, so I'm a bit lost on how exactly I can modify an incoming query string parameter, or if that's not possible - gain access to the whole query string, searching for the parameters I want to modify, and modifying those. (decoupled from Action methods, similar to filters and whatnot.)
Thank you!
