This question is locked. New answers and comments are not allowed.
I have that class:
I have a list where every Genre have 6 child. every child can have 6 child. I need a grid where I can examine all the childs in every Genre. I have been looking the example of the Master/detail>server hierarchy in the grid examples but I need more levels of detail. How could I write the View to specify until 6 levels of detail?? Thank you very much.
public partial class Genre{ public int GenreId { get; set; } public string Name { get; set; } public List<Genre> Childs { get; set; }}I have a list where every Genre have 6 child. every child can have 6 child. I need a grid where I can examine all the childs in every Genre. I have been looking the example of the Master/detail>server hierarchy in the grid examples but I need more levels of detail. How could I write the View to specify until 6 levels of detail?? Thank you very much.