1 instantiation of DbGroupAggregate
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
188return new DbGroupAggregate(resultType, arguments);
19 references to DbGroupAggregate
System.Data.Entity (19)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (5)
134DbGroupAggregate groupAggregate = (DbGroupAggregate)aggregate; 164protected virtual DbGroupAggregate VisitGroupAggregate(DbGroupAggregate aggregate) 166DbGroupAggregate result = aggregate;
System\Data\Common\CommandTrees\ExpressionBindings.cs (2)
80private DbGroupAggregate _groupAggregate; 127public DbGroupAggregate GroupAggregate
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (2)
179/// Creates a new <see cref="DbGroupAggregate"/> over the specified argument 184/*ENABLE_ELEMENT_SELECTOR(*/internal/*)*/ static DbGroupAggregate GroupAggregate(DbExpression argument)
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (1)
618if (aggInfo.Value is DbGroupAggregate)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (2)
779DbGroupAggregate groupAgg = agg as DbGroupAggregate;
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (2)
641var ga = a as DbGroupAggregate;
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (2)
936DbGroupAggregate groupAgg = e.Aggregates[aggIdx] as DbGroupAggregate;
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
3394DbGroupAggregate groupAggregateDefinition = groupInputBinding.GroupAggregate;
System\Data\Common\EntitySql\StaticContext.cs (1)
135/// Returns <see cref="DbGroupAggregate"/> based expression during the <see cref="DbGroupByExpression"/> construction process, otherwise null.
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
2464if (e.Aggregates[i].GetType() == typeof(DbGroupAggregate))