Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
220
third Level of Objects not visible in UltraTree
posted

Hi all,

My UltraTree don't show the third Level of Object Hierarchie. The Object Tree is build by EntityFramework. Each Object has two different ListMembers of Objects. One is recursive declared as follows:

public partial class ECU_WorkpiecesGroups : global::System.Data.Objects.DataClasses.EntityObject
    {

        public List <ECU_WorkpiecesGroups> ChildWorkpiecesGroupList
        {

            get
            {
                LoadChildWorkpiecesGroups();
                return ChildWorkpiecesGroups.ToList();

            }
           //  ChildWorkpiecesGroups is a EntityCollection of ECU_WorkpiecesGroups

       }

}

While Debugging through the Object the List is fullfilled with the right Objects; While showing the Objects with UltraTree the Tree is broken on the third Level. What could be my Problem?

Greatings: Rudy

Parents Reply Children
No Data