14 references to Children
System.Data.Entity (14)
System\Data\Query\PlanCompiler\JoinGraph.cs (14)
853foreach (AugmentedNode chi in joinNode.Children) 882BuildJoinEdges(joinNode.Children[0], leftMaxVisibility); 883BuildJoinEdges(joinNode.Children[1], rightMaxVisibility); 1137if (useCompatMode ? (augmentedJoinNode.Children.All(c => c is AugmentedTableNode) && augmentedJoinNode.JoinEdges.All(joinEdge => IsConstraintPresentForTurningIntoInnerJoin(joinEdge))) 1138: (CanAllJoinEdgesBeTurnedIntoInnerJoins(augmentedJoinNode.Children[1], augmentedJoinNode.JoinEdges))) 1185if (parent.Node.Op.OpType != OpType.LeftOuterJoin || parent.Children[0] != currentNode) 1399(disallowAnyJoin || currentParent.Node.Op.OpType != OpType.LeftOuterJoin || currentParent.Children[0] != currentNode) 1428currentNode.Parent.Children[0] == currentNode) 2467foreach (AugmentedNode chi in joinNode.Children) 2513Node leftNode = RebuildNodeTree(joinNode.Children[0], out leftPredicates); 2514Node rightNode = RebuildNodeTree(joinNode.Children[1], out rightPredicates); 2810AugmentedNode subree = root.Children[0]; 2812while ((subree.Id < nodeId) && (i < root.Children.Count)) 2814subree = root.Children[i];