1 instantiation of DbGroupAggregate
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
188
return new
DbGroupAggregate
(resultType, arguments);
19 references to DbGroupAggregate
System.Data.Entity (19)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (5)
134
DbGroupAggregate
groupAggregate = (
DbGroupAggregate
)aggregate;
164
protected virtual
DbGroupAggregate
VisitGroupAggregate(
DbGroupAggregate
aggregate)
166
DbGroupAggregate
result = aggregate;
System\Data\Common\CommandTrees\ExpressionBindings.cs (2)
80
private
DbGroupAggregate
_groupAggregate;
127
public
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)
618
if (aggInfo.Value is
DbGroupAggregate
)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (2)
779
DbGroupAggregate
groupAgg = agg as
DbGroupAggregate
;
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (2)
641
var
ga = a as
DbGroupAggregate
;
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (2)
936
DbGroupAggregate
groupAgg = e.Aggregates[aggIdx] as
DbGroupAggregate
;
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
3394
DbGroupAggregate
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)
2464
if (e.Aggregates[i].GetType() == typeof(
DbGroupAggregate
))