C# Reference v1.0

Don't match the filter

Finds all rows which doesn't satisfy the filter.


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