EdmFunctions.Month(DbExpression) Method

Definition

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

public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression Month (this System.Data.Entity.Core.Common.CommandTrees.DbExpression dateValue);
static member Month : System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Month (dateValue As DbExpression) As DbFunctionExpression

Parameters

dateValue
DbExpression

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

Returns

A new DbFunctionExpression that returns the integer month value from dateValue.

Applies to