Update data
Performs an UPDATE on the table.
Update()
is typically called using a model as an argument or from a hydrated model.
var update = await supabase
.From<City>()
.Where(x => x.Name == "Auckland")
.Set(x => x.Name, "Middle Earth")
.Update();