Retrieve the query as one row
Retrieves only one row from the result. Result must be one row (e.g. using limit), otherwise this will result in an error.
var result = await supabase.From<City>()
.Select(x => new object[] { x.Name, x.CountryId })
.Single();