Hi
I've a self-referencing table mapping onto an entity with relations called Parent(m:1) and Children(1:n).
I want to load the entire hierarchy up and then recurse through adding it to a treeview.
I've loaded the entire entity collection (using linq and then calling ToList()) and although the ParentID property is correct on the appropriate entities, the actual Parent property returns null?
Is there something special I have to do to get the Parent property returning the actual Parent entity?
Thanks
Garrett