.Delete()
Method Syntax
await db.Delete(resource)
Arguments
| Arguments | Description |
|---|
thing required | The table name or a RecordId to delete. |
cancellationToken optional | The cancellationToken enables graceful cancellation of asynchronous operations. |
Example usage
await db.Delete("person");
await db.Delete(("person", "h5wxrf2ewk8xjxosxtyc"));