C#: Don't match the filter

Finds all rows which doesn't satisfy the filter.

Examples

With `Select()`

var result = await supabase.From<Country>()
  .Select(x => new object[] { x.Name, x.CountryId })
  .Where(x => x.Name != "Paris")
  .Get();