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