C#: Column is in an array

Finds all rows whose value on the stated column is found on the specified values.

Examples

With `Select()`

var result = await supabase.From<City>()
  .Filter(x => x.Name, Operator.In, new List<object> \{ "Rio de Janiero", "San Francisco" \})
  .Get();