EdmFunctions.Minute Method (DbExpression)
Creates a DbFunctionExpression that invokes the canonical 'Minute' function with the specified argument, which must have a DateTime, DateTimeOffset or Time result type. The result type of the expression is Edm.Int32.
Assembly: EntityFramework (in EntityFramework.dll)
Parameters
- timeValue
-
Type:
System.Data.Entity.Core.Common.CommandTrees.DbExpression
An expression that specifies the value from which the minute should be retrieved.
Return Value
Type: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpressionA new DbFunctionExpression that returns the integer minute value from timeValue.
Exception | Condition |
---|---|
ArgumentNullException | timeValue is null. |
ArgumentException | No overload of the canonical 'Minute' function accepts an argument with the result type of timeValue. |