I am wondering how you can use a custom JSON Serializer in ServiceStack. I am aware of the JsConfig.SerializeFn/DeSerializeFn but these seem to always 'JSON.stringify' the result of my custom Serializer.
I like to replace Serialization for the whole DTO. The endresult should be something like
{"Name":"Greg"}
and not
"{\"Name\":\"Greg\"}"
Is that possible?