public void ShouldCreateDegreesExpression() { var factory = new DbExpressionFactory(); DbMathematicalFunctionExpression mathematicalFunctionExpression = factory.Degrees(factory.Column("SomeColumn")); ValidateMathematicalFunctionExpression(mathematicalFunctionExpression, DbMathematicalFunctionExpressionType.Degrees); }