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.