I want to populate a tree getting parent and nodes from database in WPF. My database structure is as;

Here deficiencyID is the id of the node and parentID is the id of the parent.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can model your db table with an entity like this:
then take a look at this answer.
EDIT: Your XAML with the treeview can be like this:
and your codebehind should be something like this:
HTH