Improve QueryStringSerializer.SerializeToString to use lowercase bools
Right now, bools are serialized uppercase since that's the default ToString behavior of .NET.
Consider changing this behavior by checking for bool when serializing and using .ToString().ToLower(), or introduce a setting to control this. It's web standard to use lowercase bools in query strings.
More info/discussion:
https://github.com/ServiceStack/Issues/issues/586
8
votes

-
MM Chi commented
Hey, nothing on this yet?
Eagerly awaiting a "This change is available from v5.0.3 that's now available on MyGet." statement 😊