DbExpressions.DbAggregateFunctionExpression.DbAggregateFunctionExpression C# (CSharp) Method

DbAggregateFunctionExpression() private method

Initializes a new instance of the DbAggregateFunctionExpression class.
private DbAggregateFunctionExpression ( DbAggregateFunctionExpressionType aggregateFunctionExpressionType, DbExpression arguments )
aggregateFunctionExpressionType DbAggregateFunctionExpressionType The of the .
arguments DbExpression The arguments used when calling the function.
        internal DbAggregateFunctionExpression(DbAggregateFunctionExpressionType aggregateFunctionExpressionType, DbExpression[] arguments)
            : base(DbFunctionExpressionType.Aggregate, arguments)
        {
            AggregateFunctionExpressionType = aggregateFunctionExpressionType;
        }
DbAggregateFunctionExpression