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();