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