.Delete()Method Syntaxawait db.Delete(resource)
| Arguments | Description | ||
|---|---|---|---|
thing required | The table name or a   | ||
cancellationToken optional | The cancellationToken enables graceful cancellation of asynchronous operations.  | 
// Delete all records from a table await db.Delete("person"); // Delete a specific record from a table await db.Delete(("person", "h5wxrf2ewk8xjxosxtyc"));