I have a grid that I am filling using an OData endpoint. To this, I would like to add a CompositeFilterDescriptor or a filter that only retrieves records that have at least a count of > 0 for a child collection of the parent data.
i.e.
MyClass{
public int Id {get;set;}
public List<Flag> Flags {get;set;}
}
I want to bring back all records that have at least one flag record in the Flags collection.
I am able to manually add the filter to the url and retrieve the object but when I try to add a filter via the DataSourceRequest it treats the >0 as a string character and tries to surround it with double quotes.