DbExpressions.MySqlQueryTranslator.VisitAggregateFunctionExpression C# (CSharp) Method

VisitAggregateFunctionExpression() protected method

Translates the aggregateFunctionExpression into a string representation.
protected VisitAggregateFunctionExpression ( DbAggregateFunctionExpression aggregateFunctionExpression ) : DbExpression
aggregateFunctionExpression DbAggregateFunctionExpression The to translate.
return DbExpression
        protected override DbExpression VisitAggregateFunctionExpression(DbAggregateFunctionExpression aggregateFunctionExpression)
        {
            var functionName = GetAggregateFunctionBody(aggregateFunctionExpression.AggregateFunctionExpressionType);
            var functionSyntax = CreateDefaultFunctionSyntax(functionName, aggregateFunctionExpression.Arguments);
            return functionSyntax;
        }