Closed hughesjs closed 2 years ago
Might be a bit of a niche issue but Hypermedia.Json.Converters.PrimitiveConterter.DeserializeValue falls over for the following case:
Hypermedia.Json.Converters.PrimitiveConterter.DeserializeValue
type: System.String jsonValue: decimal 90503
Given that JsonValue already comes with a .Stringify() method, it seems to make sense to me to use that instead.
JsonValue
.Stringify()
Might be a bit of a niche issue but
Hypermedia.Json.Converters.PrimitiveConterter.DeserializeValue
falls over for the following case:Given that
JsonValue
already comes with a.Stringify()
method, it seems to make sense to me to use that instead.