JsonPatch
JsonPatch copied to clipboard
JSON Patch (JsonPatchDocument) RFC 6902 implementation for .NET
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 9.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 9.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Please can you help: I have implemented my controller action as [HttpPatch] [Authorize] [Route("Projects/{projectID}/Insights/{id}")] public ActionResult InsightPatch (Guid projectID, Guid id, JsonPatchDocument patchData) { ... some stuff... } I then...
Hello, I Have aspnet webapi project .Net Framework 4.6.1 and installed below nuget package. 'package id="Marvin.JsonPatch" version="2.1.1" targetFramework="net461" ' I have an ODataController and Patch method with HttpPatch attribute public...
Hello! Can't make library work with JObject ``` dynamic source = JObject.Parse("{A:1}"); var diff = JsonConvert.DeserializeObject("[{\"op\":\"replace\",\"path\":\"/A\",\"value\":2}]"); diff.ApplyTo(source); ``` throws Exception
When executing JsonPatchDocument.ApplyTo(obj) the property name doesn't get passed into the error message. e.g. passing "" to a required property returns "The value '' is invalid for target location." rather...
Hi, do you know any way to generate `JsonPatchDocument`s from clr objects? I do updates in my backend and I'd like to log the delta, and jsonpatch seems to be...
Might conflict with JsonPatch.Dynamic? cfr https://github.com/KevinDockx/JsonPatch.Dynamic/issues/10#issuecomment-273648173