共用方式為


EdmFunctions.AddDays(DbExpression, DbExpression) 方法

定義

建立會使用指定引數叫用標準 'AddDays' 函式的 DbFunctionExpression,其中的引數必須具有 DateTime 或 DateTimeOffset 以及整數結果型別。 運算式的結果類型與 dateValue 的結果類型相同。

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

參數

dateValue
DbExpression

運算式,指定要加入 addValueshould 的值。

addValue
DbExpression

運算式,指定要新增至 dateValue 的天數。

傳回

新的 DbFunctionExpression,會將 addValue 所指定的天數新增至 dateValue 所指定的值。

適用於