C#: Limit the number of rows returned

Limits the result with the specified count.

Examples

With `Select()`

var result = await supabase.From<City>()
  .Select(x => new object[] \{ x.Name, x.CountryId \})
  .Limit(10)
  .Get();

With embedded resources

var result = await supabase.From<Country>()
  .Select("name, cities(name)")
  .Filter("name", Operator.Equals, "United States")
  .Limit(10, "cities")
  .Get();