Hi,
I have a database table (named Topics) which includes these fields :
- topicId
- name
- parentId
and by using them I wanna populate a TreeView in c#. How can I do that ?
Thanks in advance...
|
1
|
|
|
|
|
|
It will probably be something like this. Give some more detail as to what exactly you want to do if you need more.
|
|||
|
|
|
|
Not quite. Trees are usually handled best by not loading everything you can at once. So you need to get the root node (or topic) which has no parentIDs. Then add them to the trees root node and then for each node you add you need to get its children.
|
||
|
|
|
|
the "..Whatever" should pass the childnodes of that particular childnode. This would make a recursive algorithm if the foreach loop was done for each TreeNode constructor. |
||
|
|