C# Reference v1.0

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();