Skip to content

JohnYoungers/PatchMap

Repository files navigation

License: MIT Build status NuGet

PatchMap

A framework for .Net intended to assist in handling API calls, similar to these listed below, with a single code path:

POST /api/Users
{
    Name: 'Example User',
    IsActive: true
}

PUT /api/Users/1
{
    Name: 'New Name',
    IsActive: false
}

PATCH /api/Users/1
[
    { op: 'replace', path: 'Name', value: 'Patched Name' }
]

For more details, visit the Patchmap Wiki.

About

.Net library to handle updating entities at the field level

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published