C#: Column matches a pattern

Finds all rows whose value in the stated column matches the supplied pattern (case sensitive).

Examples

With `Select()`

var result = await supabase.From<City>()
  .Filter(x => x.Name, Operator.Like, "%la%")
  .Get();