C#: Delete data

Performs a DELETE on the table.

Examples

Delete records

await supabase
  .From<City>()
  .Where(x => x.Id == 342)
  .Delete();