Follow the PATCH examples at: http://ravendb.net/docs/http-api/http-api-single
Probably need to include operations for building the array of updates that is sent as the body. Operations like:
Set - Set a property to a new value (optionally creating the property).
Inc - Increment a property value by a given value (optionally creating the property).
Unset - Remove a property.
Add - Add a value to an existing array.
Insert - Insert a value to an existing array at the specified position.
Remove - Remove a value from an existing array at a specified position.
Modify - Apply nested patch operation to an existing property value.
Copy - Copy a property value to a new property (creating or overwriting the property).
Rename - Rename a property (overwriting the new property if it is needed).
Follow the PATCH examples at: http://ravendb.net/docs/http-api/http-api-single
Probably need to include operations for building the array of updates that is sent as the body. Operations like:
Set - Set a property to a new value (optionally creating the property).
Inc - Increment a property value by a given value (optionally creating the property).
Unset - Remove a property.
Add - Add a value to an existing array.
Insert - Insert a value to an existing array at the specified position.
Remove - Remove a value from an existing array at a specified position.
Modify - Apply nested patch operation to an existing property value.
Copy - Copy a property value to a new property (creating or overwriting the property).
Rename - Rename a property (overwriting the new property if it is needed).