Exemple #1
0
 internal AugmentedNode(int id, System.Data.Entity.Core.Query.InternalTrees.Node node, List <AugmentedNode> children)
 {
     this.m_id       = id;
     this.m_node     = node;
     this.m_children = children;
     System.Data.Entity.Core.Query.PlanCompiler.PlanCompiler.Assert(children != null, "null children (gasp!)");
     foreach (AugmentedNode child in this.m_children)
     {
         child.m_parent = this;
     }
 }
Exemple #2
0
 internal AugmentedNode(int id, System.Data.Entity.Core.Query.InternalTrees.Node node)
     : this(id, node, new List <AugmentedNode>())
 {
 }