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