Match at least one filter
Finds all rows satisfying at least one of the filters.
var result = await supabase.From<Country>()
.Where(x => x.Id == 20 || x.Id == 30)
.Get();
Finds all rows satisfying at least one of the filters.
var result = await supabase.From<Country>()
.Where(x => x.Id == 20 || x.Id == 30)
.Get();
Need some help?
Contact supportLatest product updates?
See ChangelogSomething's not right?
Check system status