Info
Version: | 1.1.0 |
Author(s): | Kevin Dockx (Marvin) |
Last Update: | Tuesday, July 11, 2017 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/KevinDockx/JsonPatch.Dynamic |
NuGet Url: | https://www.nuget.org/packages/Marvin.JsonPatch.Dynamic |
Install
Install-Package Marvin.JsonPatch.Dynamic
dotnet add package Marvin.JsonPatch.Dynamic
paket add Marvin.JsonPatch.Dynamic
Marvin.JsonPatch.Dynamic Download (Unzip the "nupkg" after downloading)
Dependencies
- Marvin.JsonPatch(>= 1.1.0)
Tags
Marvin.JsonPatch was built to work on staticly typed objects, which is great for most cases.
Yet sometimes you'll want to create a patch document without having a static type to start from (for example: when integrating with a backend that's out of your control), or you'll want to apply a JsonPatchDocument to a dynamic object, or an object that has a property which isn't statically typed.
That's what this component takes care of. It extends Marvin.JsonPatch with new methods on JsonPatchDocument, and it allows you to apply the JsonPatchDocument to dynamically typed objects.