how to generate an N level tree using datatable?
- by Kishore Kumar
I have a DataTable with column ID, Name, RootID. The tree stucture is implmented using the RootId field. If the RootId is null it is considered as Root Node. How to create an Nlevel tree using the DataTale.
eg. 1 Manager null,
2 Project Lead 1,
3 Test Lead 1,
4 Sr Soft Eng 2,
5 Soft eng 2,
…