JSON Patch data.
Arguments | Description | ||
---|---|---|---|
thing required | The table name or the specific | ||
data optional | The JSON Patch data with which to patch the records. | ||
cancellationToken optional | The cancellationToken enables graceful cancellation of asynchronous operations. |
// Update a record with a specific ID var result = await db.Patch(("person", "tobie"), patches); // Update all records in a table var result = await db.Patch("person", patches);