Limits the result to rows within the specified range, inclusive.
var result = await supabase.From<City>() .Select("name, country_id") .Range(0, 3) .Get();