Hi All

I have the following class model

public class Container
{
     public List<TreeNode> Nodes { get; set; }
}

public class TreeNode
{
     public Container MyContainer { get; set; }
     public TreeNode ParentNode { get; set; }
     public List<TreeNode> Nodes { get; set; }
     public List<NodeItem> Items { get; set; }
}

public class NodeItem
{
     public TreeNode ParentNode { get; set; }
}

with example data

Container
       ParentNode1
               ChildNode1
                        Item1
                        Item2
       ParentNode2
               ChildNode2
                      NestedChildNode1
                               Item3
                               Item4

I would like to know how to load this all in one HQL query using
MultiCriteria

Thanks
Dirk





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to