Skip to content

IDatabase.Delete method

Deletes all records in a table, or a specific record, from the database.

public Task<DriverResponse> Delete(Thing thing, CancellationToken ct = default)
parameter description
thing The table name or a record id to select.

Remarks

This function will run the following query in the database:

DELETE * FROM $thing;

See Also