I can retrieve a parent/child relation using EF Core easily using .Include. However, I can't find any control that will allow me to say something like "Grid1.Datasource=ParentWithChildrenEntity".
Currently I'm using Telerik UI for ASP.NET Core. They do have a hierarchical grid, but it's clumsy, and I have to make multiple database calls to retrieve results (dropdown one parent, ask the database to find its children, etc.).
Firstly, has anyone used a relational entity with Telerik UI (Kendo)? If not, is there another way to do this that doesn't rely on multiple database calls? I mean, I guess I could go old-school and just iterate through the entire entity and dynamically create a table.
Anyway thanks for any suggestions.