Delete data
Performs a DELETE on the table.
Delete()
should always be combined with Filters to target the item(s) you wish to delete.
await supabase
.From<City>()
.Where(x => x.Id == 342)
.Delete();
Performs a DELETE on the table.
Delete()
should always be combined with Filters to target the item(s) you wish to delete.
await supabase
.From<City>()
.Where(x => x.Id == 342)
.Delete();