Order the results
Orders the result with the specified column.
var result = await supabase.From<City>()
.Select(x => new object[] { x.Name, x.CountryId })
.Order(x => x.Id, Ordering.Descending)
.Get();
Orders the result with the specified column.
var result = await supabase.From<City>()
.Select(x => new object[] { x.Name, x.CountryId })
.Order(x => x.Id, Ordering.Descending)
.Get();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status