As shown in answer on this question ServiceStack by default uses JSV format for complex objects when they are passed in QueryString.
Is it possible to set ServiceStack to use "default" JSON instead of JSV? Like instead of doing:
http://server.com/fooservice/servicestack/foo?Color1=blue&Dto={Color2:red}
I would prefer to pass:
http://server.com/fooservice/servicestack/foo?Color1=blue&Dto={"Color2":"red"}
Any way to do that?