Tingle.AspNetCore.JsonPatch.NewtonsoftJson 4.7.0

dotnet add package Tingle.AspNetCore.JsonPatch.NewtonsoftJson --version 4.7.0
NuGet\Install-Package Tingle.AspNetCore.JsonPatch.NewtonsoftJson -Version 4.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tingle.AspNetCore.JsonPatch.NewtonsoftJson" Version="4.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tingle.AspNetCore.JsonPatch.NewtonsoftJson --version 4.7.0
#r "nuget: Tingle.AspNetCore.JsonPatch.NewtonsoftJson, 4.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tingle.AspNetCore.JsonPatch.NewtonsoftJson as a Cake Addin
#addin nuget:?package=Tingle.AspNetCore.JsonPatch.NewtonsoftJson&version=4.7.0

// Install Tingle.AspNetCore.JsonPatch.NewtonsoftJson as a Cake Tool
#tool nuget:?package=Tingle.AspNetCore.JsonPatch.NewtonsoftJson&version=4.7.0

Tingle.AspNetCore.JsonPatch.NewtonsoftJson

When performing patch operations, it is very likely that some updates to the model may try to modify or remove immutable types and thus there is a need to ensure that this is not the case before committing the changes to the persistence layer such as a database.

A sample usage of this functionality is shown below:

public class TestClass
{
    [Key]
    public string Id { get; set; }

    [Range(18, 65)]
    public int Age { get; set; }
}
public class TestController : ControllerBase
{
    [HttpPost("{id}")]
    public async Task<IActionResult> UpdateAsync([FromRoute, Required] string id, [FromBody] JsonPatchDocument<TestClass> model)
    {
        // Fetch the object that needs to be patched from your persistence layer e.g. database
        var test = await GetObjectFromDbAsync(id);

        // update the template
        model.ApplyToSafely(template, ModelState, new List<string> { "Id" });
        if (!ModelState.IsValid) return ValidationProblem();

        // validate the resulting model
        if (!TryValidateModel(test)) return ValidationProblem();

        // other code omitted for brevity
    }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
4.7.0 110 3/25/2024
4.6.0 137 3/8/2024
4.5.0 202 11/22/2023
4.4.1 149 11/20/2023
4.4.0 99 11/15/2023
4.3.0 261 10/18/2023
4.2.2 249 9/20/2023
4.2.1 301 8/4/2023
4.2.0 303 5/31/2023
4.1.1 143 5/26/2023
4.1.0 147 5/22/2023
4.0.0 361 3/14/2023
2.5.0 562 11/21/2022
2.4.2 944 7/25/2022
2.4.1 1,986 3/22/2022
2.4.0 3,411 11/10/2021
2.3.1 2,178 9/20/2021
2.3.0 1,111 7/22/2021