JsonPatch in an Angular/.NET Web API project
I'm utilizing KevinDockx's JsonPatch extension for Visual Studio. My project uses .NET Web API (not Core) and Angular (6) . .Net Web API doesn't support the JsonPatchDocument namespace, thus the need for KevinDock's JsonPatch extension. I'm reading through his documentation here: https://github.com/KevinDockx/JsonPatch/blob/master/README.md JsonPatch consists of two parts: On the client (consumer of the API) : the JsonPatchDocument / JsonPatchDocument class to build what's essentially a change set to be applied to your object on your API side. At (Web) API level : an ApplyTo method to apply