14 references to Children
System.Data.Entity (14)
System\Data\Mapping\ViewGeneration\CqlGeneration\CaseCqlBlock.cs (4)
54Debug.Assert(Children.Count == 1, "CaseCqlBlock can have exactly one child."); 55CqlBlock childBlock = Children[0]; 81Debug.Assert(Children.Count == 1, "CaseCqlBlock can have exactly one child."); 82CqlBlock childBlock = this.Children[0];
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (4)
66foreach (CqlBlock child in Children) 97CqlBlock leftmostBlock = this.Children[0]; 100for (int i = 1; i < this.Children.Count; ++i) 103CqlBlock rightBlock = this.Children[i];
System\Data\Mapping\ViewGeneration\CqlGeneration\UnionCqlBlock.cs (6)
37Debug.Assert(this.Children.Count > 0, "UnionCqlBlock: Children collection must not be empty"); 41foreach (CqlBlock child in Children) 59Debug.Assert(this.Children.Count > 0, "UnionCqlBlock: Children collection must not be empty"); 60DbExpression cqt = this.Children[0].AsCqt(isTopLevel); 61for (int i = 1; i < this.Children.Count; ++i) 63cqt = cqt.UnionAll(this.Children[i].AsCqt(isTopLevel));