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