C#: Limit the query to a range

Limits the result to rows within the specified range, inclusive.

Examples

With `Select()`

var result = await supabase.From<City>()
  .Select("name, country_id")
  .Range(0, 3)
  .Get();