Unplanned
Last Updated: 17 Jan 2022 10:25 by Stefano
Steve
Created on: 15 Jan 2021 14:39
Category: Filter
Type: Feature Request
2
Custom operator filtering functionality server-side

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;}

}

I have a DataSource<Person> with server filter enabled.

I am going to have a large dataset on this datasource and server operations are badly required.
1 comment
Stefano
Posted on: 17 Jan 2022 10:25
I have a very similar requirement to this one. In my case just supporting arrays of primitives could be enough, but the ideal solution would be supporting arrays of objects like in the above example.