Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

65
Votes

The task involves enhancing the system to support filtering for columns with one-to-many relationships. This feature allows users to efficiently navigate and manipulate data where multiple entries are linked to a single key, enabling intuitive data management and analysis. Users can filter out irrelevant data, focusing on relationships critical to their tasks. The feature emphasizes user-friendly interaction, improving overall productivity by streamlining complex data filtering and extraction processes in applications.

Refer to the below example. 

using System.Collections.Generic;


public class Blog

{

    public int BlogId { get; set; }

    public string Title { get; set; }

    public string Url { get; set; }


    // One Blog has many Posts

    public ICollection<Post> Posts { get; set; }

}

public class Post

{

    public int PostId { get; set; }

    public string Title { get; set; }

    public string Content { get; set; }


    // Each Post belongs to one Blog

    public int BlogId { get; set; }

    public Blog Blog { get; set; }

}


It can a collection, List or Array etc.