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();
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();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status