C# Reference v1.0

Column is less than a value

Finds all rows whose value on the stated column is less than the specified value.


var result = await supabase.From<City>()
  .Select("name, country_id")
  .Where(x => x.CountryId < 250)
  .Get();