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