Limits the result with the specified count.
var result = await supabase.From<City>()
.Select(x => new object[] \{ x.Name, x.CountryId \})
.Limit(10)
.Get();
var result = await supabase.From<Country>()
.Select("name, cities(name)")
.Filter("name", Operator.Equals, "United States")
.Limit(10, "cities")
.Get();