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