31 references to CreateVarVec
System.Data.Entity (31)
System\Data\Query\InternalTrees\NodeInfo.cs (3)
644VarVec keyVec = m_command.CreateVarVec(relOpChildNodeInfo.Keys.KeyVars); 648VarVec opVars = m_command.CreateVarVec(op.Outputs); 1291VarVec missingKeys = m_command.CreateVarVec(driverChildNodeInfo.Keys.KeyVars);
System\Data\Query\InternalTrees\Vars.cs (2)
330VarVec tmp = m_command.CreateVarVec(other); 344VarVec otherCopy = m_command.CreateVarVec(other);
System\Data\Query\PlanCompiler\JoinGraph.cs (2)
1716VarVec keyVars = m_command.CreateVarVec(joinEdge.Right.Table.Keys); 1807VarVec keyVars = m_command.CreateVarVec(joinEdge.Left.Table.Keys);
System\Data\Query\PlanCompiler\KeyPullup.cs (2)
140VarVec outputVars = m_command.CreateVarVec(op.Outputs); 249keyVarsMissingFromOutput[i] = m_command.CreateVarVec(existingKeyVars);
System\Data\Query\PlanCompiler\NestPullup.cs (17)
544VarVec newOutputVars = Command.CreateVarVec(xni.Definitions); 728VarVec projectOpOutputs = Command.CreateVarVec(op.Outputs); 915VarVec newOutputVars = Command.CreateVarVec(nestOp.Outputs); 1046VarVec outputVars = Command.CreateVarVec(op.Outputs); 1050VarVec newProjectVars = Command.CreateVarVec(op.Outputs); 1097VarVec newNestedProjectOutputs = Command.CreateVarVec(nestedNestOp.Outputs); 1116VarVec newNestedNestOutputs = Command.CreateVarVec(newNestedProjectOutputs); 1360VarVec oldNestOpNonCollectionOutputs = Command.CreateVarVec(nestOp.Outputs); 1364VarVec oldProjectOpNonCollectionOutputs = Command.CreateVarVec(projectOp.Outputs); 1368VarVec oldProjectOpCollectionOutputs = Command.CreateVarVec(projectOp.Outputs); 1373VarVec collectionsToRemove = Command.CreateVarVec(oldNestOpCollectionOutputs); 1411VarVec newProjectOpOutputs = Command.CreateVarVec(oldProjectOpNonCollectionOutputs); 1449projectNode.Op = Command.CreateProjectOp(Command.CreateVarVec(newProjectOpOutputs)); 1465VarVec nestOpOutputs = Command.CreateVarVec(projectOp.Outputs); 2146VarVec childKeys = Command.CreateVarVec(((SingleStreamNestOp)nestNode.Children[i].Op).Keys); 2217VarVec nestOpOutputs = Command.CreateVarVec(flattenedOutputVarVec); 2456VarVec projectOutputs = Command.CreateVarVec(inputNodeInfo.Definitions);
System\Data\Query\PlanCompiler\TransformationRules.cs (5)
2648VarVec vec = command.CreateVarVec(projectOp.Outputs); 2934VarVec projectOpOutputs = command.CreateVarVec(applyLeftChildNodeInfo.Definitions); 3479VarVec vec = command.CreateVarVec(projectOp.Outputs); 4012projectDefinitions = command.CreateVarVec(projectDefinitions); 4192newNode = command.CreateNode(command.CreateDistinctOp(command.CreateVarVec(op.Keys)), newNode);