10 references to PlanCompilerUtil
System.Data.Entity (10)
System\Data\Query\PlanCompiler\AggregatePushdown.cs (2)
512return PlanCompilerUtil.IsConstantBaseOp(currentNode.Op.OpType); 761if (!PlanCompilerUtil.IsCollectionAggregateFunction(op, n))
System\Data\Query\PlanCompiler\JoinGraph.cs (2)
2444predicateNode = PlanCompilerUtil.CombinePredicates(equalsNode, predicateNode, m_command); 2744return PlanCompilerUtil.CombinePredicates(node1, node2, m_command);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
1922bool canSimplifyPrecheck = PlanCompilerUtil.IsRowTypeCaseOpWithNullability(op, n, out thenClauseIsNull);
System\Data\Query\PlanCompiler\Normalizer.cs (1)
231else if (PlanCompilerUtil.IsCollectionAggregateFunction(op, n))
System\Data\Query\PlanCompiler\PreProcessor.cs (2)
1174if (TypeSemantics.IsCollectionType(op.Type) || PlanCompilerUtil.IsCollectionAggregateFunction(op, n)) 1200if (PlanCompilerUtil.IsRowTypeCaseOpWithNullability(op, n, out thenClauseIsNull))
System\Data\Query\PlanCompiler\ProjectionPruner.cs (1)
533&& PlanCompilerUtil.IsConstantBaseOp(d.Child0.Op.OpType)).ToList();
System\Data\Query\PlanCompiler\TransformationRules.cs (1)
1893newJoinPredicateNode = PlanCompilerUtil.CombinePredicates(joinNode.Child2, newJoinPredicateNode, command);