public class Book
{
public int Id { get; set; }
public string? Title { get; set; }
public List<string> SubjectsList { get; set; } = new List<string>();
}
For the Title, RadzenDataFilterProperty, works like a charm. But, I need to filter like this:
While indeed such filter is not supported at the moment (collection of primitive items) you can filter collection of objects similar to out first DataFilter demo where the OrderDetails Product.ProductName property is filtered using Contains operator: