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.
Assembly: EntityFramework (in EntityFramework.dll)
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.DbFunctionExpressionA 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. |