SqlClient\Query\QueryConverter.cs (13)
1868return this.VisitAggregate(ma.Expression, null, SqlNodeType.Count, typeof(int));
2172return this.VisitAggregate(mc.Arguments[0], null, SqlNodeType.Count, mc.Type);
2176return this.VisitAggregate(mc.Arguments[0], this.GetLambda(mc.Arguments[1]), SqlNodeType.Count, mc.Type);
2182return this.VisitAggregate(mc.Arguments[0], null, SqlNodeType.LongCount, mc.Type);
2186return this.VisitAggregate(mc.Arguments[0], this.GetLambda(mc.Arguments[1]), SqlNodeType.LongCount, mc.Type);
2192return this.VisitAggregate(mc.Arguments[0], null, SqlNodeType.Sum, mc.Type);
2196return this.VisitAggregate(mc.Arguments[0], this.GetLambda(mc.Arguments[1]), SqlNodeType.Sum, mc.Type);
2202return this.VisitAggregate(mc.Arguments[0], null, SqlNodeType.Min, mc.Type);
2206return this.VisitAggregate(mc.Arguments[0], this.GetLambda(mc.Arguments[1]), SqlNodeType.Min, mc.Type);
2212return this.VisitAggregate(mc.Arguments[0], null, SqlNodeType.Max, mc.Type);
2216return this.VisitAggregate(mc.Arguments[0], this.GetLambda(mc.Arguments[1]), SqlNodeType.Max, mc.Type);
2222return this.VisitAggregate(mc.Arguments[0], null, SqlNodeType.Avg, mc.Type);
2226return this.VisitAggregate(mc.Arguments[0], this.GetLambda(mc.Arguments[1]), SqlNodeType.Avg, mc.Type);