20 references to CreateNode
System.Data.Entity (20)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (4)
1337return _iqtCommand.CreateNode( 1386_iqtCommand.CreateNode( 1404_iqtCommand.CreateNode( 2912_iqtCommand.CreateNode(
System\Data\Query\PlanCompiler\JoinGraph.cs (1)
2561Node newJoinNode = m_command.CreateNode(joinNode.Node.Op,
System\Data\Query\PlanCompiler\NestPullup.cs (1)
739Node groupByNode = Command.CreateNode(
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (2)
2964Node caseNode = m_command.CreateNode(caseOp, likeNode, n.Child0, CreateNullConstantNode(caseOp.Type)); 3008newNode = m_command.CreateNode(likeOp, typeIdProperty, typeIdConstantNode, CreateNullConstantNode(DefaultTypeIdType));
System\Data\Query\PlanCompiler\Normalizer.cs (1)
203Node gbySubqueryNode = m_command.CreateNode(gbyOp, unnestNode, keyVarDefListNode, aggVarDefListNode);
System\Data\Query\PlanCompiler\PreProcessor.cs (2)
728Node joinNode = m_command.CreateNode(m_command.CreateInnerJoinOp(), 1488Node caseNode = m_command.CreateNode(caseOp, notNode, trueNode, nullNode);
System\Data\Query\PlanCompiler\ProjectionPruner.cs (1)
573result = m_command.CreateNode(m_command.CreateGroupByOp(newOp.Keys, newOp.Outputs),
System\Data\Query\PlanCompiler\TransformationRules.cs (8)
348Node caseNode = this.Command.CreateNode(this.Command.CreateCaseOp(elseNode.Op.Type), whenNode, thenNode, elseNode); 1743Node newGroupByNode = trc.Command.CreateNode(groupByNode.Op, subFilterNode, groupByNode.Child1, groupByNode.Child2); 1920newJoinNode = command.CreateNode(joinOp, leftInputNode, rightInputNode, newJoinPredicateNode); 2468newNode = command.CreateNode(joinOp, applyNode.Child0, filterNode.Child0, filterNode.Child1); 2605Node joinNode = command.CreateNode(command.CreateLeftOuterJoinOp(), applyNode.Child0, joinNodeRightInput, filterNode.Child1); 2887newNode = command.CreateNode(joinOp, applyLeftChild, applyRightChild, trueNode); 3433newJoinNode = context.Command.CreateNode(joinNode.Op, joinNode.Child0.Child0, joinNode.Child1.Child0, joinConditionNode); 3599newJoinNode = command.CreateNode(joinNode.Op, newLeftInput, newRightInput, joinNode.Child2);