2 instantiations of AggregateOp
System.Data.Entity (2)
System\Data\Query\InternalTrees\Command.cs (1)
804return new AggregateOp(aggFunc, distinctAgg);
System\Data\Query\InternalTrees\ScalarOps.cs (1)
852internal static readonly AggregateOp Pattern = new AggregateOp();
10 references to AggregateOp
System.Data.Entity (10)
System\Data\Query\InternalTrees\Command.cs (1)
802internal AggregateOp CreateAggregateOp(EdmFunction aggFunc, bool distinctAgg)
System\Data\Query\InternalTrees\OpCopier.cs (1)
417public override Node Visit(AggregateOp op, Node n)
System\Data\Query\InternalTrees\ScalarOps.cs (1)
852internal static readonly AggregateOp Pattern = new AggregateOp();
System\Data\Query\InternalTrees\Visitors.cs (2)
270public virtual void Visit(AggregateOp op, Node n) 1311public virtual TResultType Visit(AggregateOp op, Node n)
System\Data\Query\PlanCompiler\AggregatePushdown.cs (1)
605public override Node Visit(AggregateOp op, Node n)
System\Data\Query\PlanCompiler\CTreeGenerator.cs (3)
974public override DbExpression Visit(AggregateOp op, Node n) 1748AggregateOp funcAggOp = aggOpNode.Op as AggregateOp;
System\Data\Query\PlanCompiler\Normalizer.cs (1)
186AggregateOp aggregateOp = m_command.CreateAggregateOp(op.Function, false);