Column matches a case-insensitive pattern
Finds all rows whose value in the stated column
matches the supplied pattern
(case insensitive).
await supabase.From<City>()
.Filter(x => x.Name, Operator.ILike, "%la%")
.Get();
Finds all rows whose value in the stated column
matches the supplied pattern
(case insensitive).
await supabase.From<City>()
.Filter(x => x.Name, Operator.ILike, "%la%")
.Get();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status