EdmFunctions.Hour(DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'Hour' function with the specified argument, which must have a DateTime, DateTimeOffset or Time result type. The result type of the expression is Edm.Int32.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ Hour(System::Data::Common::CommandTrees::DbExpression ^ timeValue);
public static System.Data.Common.CommandTrees.DbFunctionExpression Hour (this System.Data.Common.CommandTrees.DbExpression timeValue);
static member Hour : System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Hour (timeValue As DbExpression) As DbFunctionExpression

Parameters

timeValue
DbExpression

An expression that specifies the value from which the hour should be retrieved.

Returns

A new DbFunctionExpression that returns the integer hour value from timeValue.

Exceptions

timeValue is null.

timeValue is invalid.

Applies to