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();
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();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status