2 overrides of Children
System.Data.Entity (2)
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
84
internal override List<CellTreeNode>
Children
{ get { return new List<CellTreeNode>(); } }
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (1)
109
internal override List<CellTreeNode>
Children
{ get { return m_children; } }
22 references to Children
System.Data.Entity (22)
System\Data\Mapping\ViewGeneration\BasicViewGenerator.cs (19)
131
foreach (LeafCellTreeNode childNode in rootNode.
Children
)
170
if (rootNode.
Children
.Count <= 1)
179
for (int i = 0; i < rootNode.
Children
.Count; i++)
182
rootNode.
Children
[i] = IsolateUnions(rootNode.
Children
[i]);
195
ModifiableIteratorCollection<CellTreeNode> childrenSet = new ModifiableIteratorCollection<CellTreeNode>(rootNode.
Children
);
251
for (int i = 0; i < rootNode.
Children
.Count; i++)
254
rootNode.
Children
[i] = ConvertUnionsToNormalizedLOJs(rootNode.
Children
[i]);
258
if (rootNode.OpType != CellTreeOpType.LOJ || rootNode.
Children
.Count < 2)
277
if (rootNode.
Children
[0].OpType == CellTreeOpType.IJ)
280
resultIJDriver = new OpCellTreeNode(m_viewgenContext, rootNode.
Children
[0].OpType);
283
children.AddRange(rootNode.
Children
[0].
Children
);
284
resultIJDriverChildren = new HashSet<CellTreeNode>(rootNode.
Children
[0].
Children
);
288
result.Add(rootNode.
Children
[0]);
292
foreach (var child in rootNode.
Children
.Skip(1))
491
List<CellTreeNode> children = rootNode.
Children
;
System\Data\Mapping\ViewGeneration\CellTreeSimplifier.cs (2)
71
List<CellTreeNode> children = rootNode.
Children
;
152
List<CellTreeNode> children = rootNode.
Children
;
System\Data\Mapping\ViewGeneration\Structures\CellTreeNodeVisitors.cs (1)
204
finalChildren.AddRange(child.
Children
);