EdmFunctions.Floor Method (DbExpression)

 

Creates a DbFunctionExpression that invokes the canonical 'Floor' 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 Floor(
	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 largest integer value not greater than value.

Exception Condition
ArgumentNullException

value is null.

ArgumentException

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