Upsert data
Performs an UPSERT into the table.
- Primary keys should be included in the data payload in order for an update to work correctly.
- Primary keys must be natural, not surrogate. There are however, workarounds for surrogate primary keys.
var model = new City
{
Id = 554,
Name = "Middle Earth"
};
await supabase.From<City>().Upsert(model);