Complement [FromUri] serialization with APIController
We have multiple API controllers accepting GET requests like so: //FooController public IHttpActionResult Get([FromUri]Foo f); //BarController public IHttpActionResult Get([FromUri]Bar b); Now - we would like (or, are forced) to change DateTime string format within GET query string globally "yyyy-MM-ddTHH:mm:ss" -> "yyyy-MM-ddTHH.mm.ss" After the change all [FromUri] serializations with classes containing DateTime types fail. Is there a way to complement [FromUri] serialization to accept the DateTime format in query string? Or do we have to build custom serialization for all API parameters to