RadzenDataFilter - trouble with multiple filters with the same property name

Hi,

It seems there is a problem in RadzenDataFilter if we want to add more than one filter with the same property (used for example with nested property).

My use case is of course a lot complicated, but imagine this simple one to reproduce the problem.
I have a product, and this product can contains a list of product himself.

public class Product
{
    public int Id { get; set;}

    public string Name { get; set;}

    public string Code { get; set;}

    public List<Product> ChildrenProducts{get;set;}
}

I want to create a RadzenDataFilter on product

<RadzenDataFilterProperty Property="ChildrenProducts" FilterProperty="Name" Title="Name of child products"
                                      FilterOperator="FilterOperator.Contains"/>
            <RadzenDataFilterProperty Property="ChildrenProducts" FilterProperty="Code" Title="Code of child products"
                                      FilterOperator="FilterOperator.Contains"/>

When I select the second filter, code, the RadzenDataFilter select the first one. It seems that we can have only one filter for the same property

There is no such limtation:

UPDATE: Ah, I misunderstood your case. I'll will check what's going on and I'll post update.

Indeed at the moment this is not possible. We accept pull requests!

I will look in the RadzenDataFilter component if I find a way to do it without broken the full component.

For my case, as I have a custom derivated filter property object and a custom request parser, I did it with another property (ForceProperty) to set a unique name in Property and don't use it in the parser.