C# Reference v1.0

Limit the number of rows returned

Limits the result with the specified count.


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