Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson
3.0.0-Release0.0
See the version list below for details.
dotnet add package Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson --version 3.0.0-Release0.0
NuGet\Install-Package Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson -Version 3.0.0-Release0.0
<PackageReference Include="Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson" Version="3.0.0-Release0.0" />
paket add Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson --version 3.0.0-Release0.0
#r "nuget: Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson, 3.0.0-Release0.0"
// Install Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson as a Cake Addin
#addin nuget:?package=Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson&version=3.0.0-Release0.0&prerelease
// Install Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson as a Cake Tool
#tool nuget:?package=Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson&version=3.0.0-Release0.0&prerelease
JSON Merge Patch support for ASP.NET Core
- Morcatko.AspNetCore.JsonMergePatch (ASP.NET Core 2.x)
- Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson (ASP.NET Core 3.0)
- Morcatko.AspNetCore.JsonMergePatch.SystemText (ASP.NET Core 3.0)
- Morcatko.AspNetCore.JsonMergePatch.Document (ASP.NET Core 3.0 - base package)
JSON Merge Patch
- RFC 7396
- performs partial resource update similar to JSON Patch
- Supports Swagger
- netstandard 2.0
C# object:
var backendModel = new Model()
{
Name = "James Bond"
Age = "45"
Weapon = "Gun"
}
JSON Merge Patch:
{
"Weapon": "Knife"
}
resulting C# object:
{
Name = "James Bond"
Age = "45"
Weapon = "Knife"
}
How to
See 2.1-testApp
or 3.0 testApp
for sample
- Install nuget.
- ASP.NET Core 2.x Morcatko.AspNetCore.JsonMergePatch
- ASP.NET Core 3.0 (Newtonsoft.Json) Morcatko.AspNetCore.JsonMergePatch.NewtonsoftJson
- ASP.NET Core 3.0 (System.Text) Morcatko.AspNetCore.JsonMergePatch.SystemText nuget
- Add to your startup class
using Morcatko.AspNetCore.JsonMergePatch;
public void ConfigureServices(IServiceCollection services)
{
...
services
.AddMvc() // or .AddMvcCore()
//.AddJsonMergePatch(); // 2.x
//.AddNewtonsoftJsonMergePatch(); // 3.0 (Newtonsoft.Josn)
//.AddSystemTextJsonMergePatch(); // 3.0 (System.Text)
...
}
- Use in your controller
using Morcatko.AspNetCore.JsonMergePatch;
[HttpPatch]
[Consumes(JsonMergePatchDocument.ContentType)]
public void Patch([FromBody] JsonMergePatchDocument<Model> patch)
{
...
patch.ApplyTo(backendModel);
...
}
You can apply a patch to a different Type (be carefull, all C# static typing is ignored) - see #16 for more details.
BackendModel backendModel;
JsonMergePatch<DtoModel> patch;
patch.ApplyTo(backendModel)
- Swagger config (optional)
copy & paste this class into your app - https://github.com/Morcatko/Morcatko.AspNetCore.JsonMergePatch/blob/master/test/testApp2.0/JsonMergePatchDocumentOperationFilter.cs
services.AddSwaggerGen(c =>
{
c.OperationFilter<JsonMergePatchDocumentOperationFilter>();
});
Options
services
.AddMvc()
.AddJsonMergePatch(o => ....)
- bool EnableDelete - Deletes items when target object is Dictionary and patched value is null
How to - unit testing
See tests in ...Builder.Json.Simple
class for more examples
Morcatko.AspNetCore.JsonMergePatch.Tests.Builder.Json
public void UnitTest()
{
var model = new Model();
var patch1 = PatchBuidler.Build<Model>("{ integer: 1}");
...
or
...
var original = new Model();
var patched = new Model() { Integer = 1};
var patch2 = PatchBuilder.Build(original, patched);
}
Known issues/Not working
- ModelState.IsValid is false when a required property is missing
- Enums with [EnumMember(Value = "....")] attribute
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.0 netcoreapp3.1 |
-
.NETCoreApp 3.0
- Microsoft.AspNetCore.Mvc.NewtonsoftJson (>= 3.0.0)
- Morcatko.AspNetCore.JsonMergePatch.Document (>= 3.0.0-Release0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.0.0 | 120,013 | 4/29/2022 |
6.0.0-alpha01 | 26,401 | 1/21/2022 |
3.0.7 | 173,253 | 3/24/2021 |
3.0.6 | 32,588 | 11/16/2020 |
3.0.5 | 7,568 | 9/30/2020 |
3.0.4 | 4,649 | 8/26/2020 |
3.0.3 | 1,383 | 8/7/2020 |
3.0.2 | 6,456 | 6/3/2020 |
3.0.1 | 74,976 | 3/24/2020 |
3.0.0 | 12,246 | 2/18/2020 |
3.0.0-Release0.0 | 952 | 11/27/2019 |
3.0.0-preview9.0 | 466 | 9/6/2019 |