C#: Order the results

Orders the result with the specified column.

Examples

With `Select()`

var result = await supabase.From<City>()
  .Select(x => new object[] \{ x.Name, x.CountryId \})
  .Order(x => x.Id, Ordering.Descending)
  .Get();

With embedded resources

 var result = await supabase.From<Country>()
  .Select("name, cities(name)")
  .Filter(x => x.Name == "United States")
  .Order("cities", "name", Ordering.Descending)
  .Get();