public static SqlExpression MathCeilingDouble(
     [Type(typeof(double))] SqlExpression d)
 {
     return(SqlDml.Ceiling(d));
 }
 public static SqlExpression MathCeilingDecimal(
     [Type(typeof(decimal))] SqlExpression d)
 {
     return(SqlDml.Ceiling(d));
 }
 public static SqlExpression MathCeilingDecimal(
     [Type(typeof(decimal))] SqlExpression d)
 {
     return(TryCastToDecimalPS(SqlDml.Ceiling(d), 28, 0));
 }