Limit the query to a range
Limits the result to rows within the specified range, inclusive.
var result = await supabase.From<City>()
.Select("name, country_id")
.Range(0, 3)
.Get();
Limits the result to rows within the specified range, inclusive.
var result = await supabase.From<City>()
.Select("name, country_id")
.Range(0, 3)
.Get();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status