Skip to content

JohnYoungers/PatchMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

 
 
 

Contributors