1 instantiation of ComputedVar
System.Data.Entity (1)
System\Data\Query\InternalTrees\Command.cs (1)
497
ComputedVar v = new
ComputedVar
(NewVarId(), type);
15 references to ComputedVar
System.Data.Entity (15)
System\Data\Query\InternalTrees\Command.cs (2)
495
internal
ComputedVar
CreateComputedVar(TypeUsage type)
497
ComputedVar
v = new ComputedVar(NewVarId(), type);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (4)
529
PlanCompiler.Assert(defOp.Var is
ComputedVar
, "VarDefOp defined non-Computed Var");
598
ComputedVar
compVar = referencedVar as
ComputedVar
;
1744
PlanCompiler.Assert(aggVar is
ComputedVar
, "Non-ComputedVar encountered in Aggregate VarDefOp");
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (9)
789
FlattenComputedVar((
ComputedVar
)varDefOp.Var, chi, out newChiList, out x);
817
private void FlattenComputedVar(
ComputedVar
v, Node node, out List<Node> newNodes, out md.TypeUsage newType)
1331
ComputedVar
computedVar = (
ComputedVar
)varDefOp.Var;
1488
List<
ComputedVar
> newComputedVars;
1518
private Node FixupSetOpChild(Node setOpChild, VarMap varMap, List<
ComputedVar
> newComputedVars)
1561
private VarMap FlattenVarMap(VarMap varMap, out List<
ComputedVar
> newComputedVars)
1617
newComputedVars = new List<
ComputedVar
>();
1619
newComputedVars.Add((
ComputedVar
)innerVar);