DbExpressions.DbMathematicalFunctionExpression.DbMathematicalFunctionExpression C# (CSharp) Method

DbMathematicalFunctionExpression() private method

Initializes a new instance of the DbMathematicalFunctionExpression class.
private DbMathematicalFunctionExpression ( DbMathematicalFunctionExpressionType mathematicalFunctionExpressionType, DbExpression arguments )
mathematicalFunctionExpressionType DbMathematicalFunctionExpressionType The of the .
arguments DbExpression The arguments used when calling the function.
        internal DbMathematicalFunctionExpression(DbMathematicalFunctionExpressionType mathematicalFunctionExpressionType, DbExpression[] arguments)
            : base(DbFunctionExpressionType.Mathematical, arguments)
        {
            MathematicalFunctionExpressionType = mathematicalFunctionExpressionType;
        }
DbMathematicalFunctionExpression