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();
var model = await supabase
.From<City>()
.Where(x => x.Name == "Auckland")
.Single();
model.Name = "Middle Earth";
await model.Update<City>();