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();
var result = await supabase.From<Country>()
.Where(x => x.Population > 300000 || x.BirthRate < 0.6)
.Where(x => x.Name != "Mordor")
.Get();