C#: Match at least one filter

Finds all rows satisfying at least one of the filters.

Examples

With `Select()`

var result = await supabase.From<Country>()
  .Where(x => x.Id == 20 || x.Id == 30)
  .Get();

Use `or` with `and`

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