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