Limit the number of rows returned
Limits the result with the specified count.
var result = await supabase.From<City>()
.Select(x => new object[] { x.Name, x.CountryId })
.Limit(10)
.Get();
Limits the result with the specified count.
var result = await supabase.From<City>()
.Select(x => new object[] { x.Name, x.CountryId })
.Limit(10)
.Get();
Need some help?
Contact supportLatest product updates?
See ChangelogSomething's not right?
Check system status