C#: Column is less than a value

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

Examples

With `Select()`

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