Feature request
Enable data operations over an array as part of the model server-side with a custom operator
For example, I am planning to use a filter component to a model like this.
public class Person{
public string Name{get;set;}
public List<Address> Addresses {get;set;}
}
public class Address{
public string City{get;set;}
}