C# Reference v1.0

Column is in an array

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


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