Finds all rows whose value in the stated column matches the supplied pattern (case insensitive).
column
pattern
await supabase.From<City>() .Filter(x => x.Name, Operator.ILike, "%la%") .Get();