Share via


EdmFunctions.AddMonths(DbExpression, DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'AddMonths' function with the specified arguments, which must have DateTime or DateTimeOffset and integer result types. The result type of the expression is the same as the result type of dateValue.

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

Parameters

dateValue
DbExpression

An expression that specifies the value to which addValueshould be added.

addValue
DbExpression

An expression that specifies the number of months to add to dateValue.

Returns

A new DbFunctionExpression that adds the number of months specified by addValue to the value specified by dateValue.

Applies to