EdmFunctions.Ceiling Method (DbExpression)

 

Creates a DbFunctionExpression that invokes the canonical 'Ceiling' function with the specified argument, which must each have a single, double or decimal result type. The result type of the expression is the same as the result type of value.

Namespace:   System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly:  EntityFramework (in EntityFramework.dll)

public static DbFunctionExpression Ceiling(
	this DbExpression value
)

Parameters

value
Type: System.Data.Entity.Core.Common.CommandTrees.DbExpression

An expression that specifies the numeric value.

Return Value

Type: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression

A new DbFunctionExpression that returns the smallest integer value not less than value.

Exception Condition
ArgumentNullException

value is null.

ArgumentException

No overload of the canonical 'Ceiling' function accepts an argument with the result type of value.