Finds all rows whose value on the stated column is less than the specified value.
column
value
var result = await supabase.From<City>() .Select("name, country_id") .Where(x => x.CountryId < 250) .Get();