JsonPatch
JsonPatch copied to clipboard
Adds JSON Patch support to ASP.NET Web API (http://tools.ietf.org/html/rfc6902)
I'm trying to patch the `Status` field on something, where `Status` is an `Enum`. We're using `EnumMember` on our enum values to specify how the client should see them, e.g....
Just noticed a potential issue with the implementation for `move`. In [`PathHelper.ConvertValue()`](https://github.com/myquay/JsonPatch/blob/master/src/JsonPatch/Paths/PathHelper.cs#L264), we currently set values by serializing then deserializing the object (in order to convert it to the appropriate...