4 overrides of AsCqt
System.Data.Entity (4)
System\Data\Mapping\ViewGeneration\CqlGeneration\CaseCqlBlock.cs (1)
76
internal override DbExpression
AsCqt
(bool isTopLevel)
System\Data\Mapping\ViewGeneration\CqlGeneration\ExtentCqlBlock.cs (1)
79
internal override DbExpression
AsCqt
(bool isTopLevel)
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (1)
90
internal override DbExpression
AsCqt
(bool isTopLevel)
System\Data\Mapping\ViewGeneration\CqlGeneration\UnionCqlBlock.cs (1)
57
internal override DbExpression
AsCqt
(bool isTopLevel)
6 references to AsCqt
System.Data.Entity (6)
System\Data\Mapping\ViewGeneration\CqlGeneration\CaseCqlBlock.cs (1)
83
DbExpression cqt = childBlock.
AsCqt
(false);
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (2)
98
DbExpression left = leftmostBlock.
AsCqt
(false);
104
DbExpression right = rightBlock.
AsCqt
(false);
System\Data\Mapping\ViewGeneration\CqlGeneration\UnionCqlBlock.cs (2)
60
DbExpression cqt = this.Children[0].
AsCqt
(isTopLevel);
63
cqt = cqt.UnionAll(this.Children[i].
AsCqt
(isTopLevel));
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (1)
112
DbExpression query = blockTree.
AsCqt
(true);