共用方式為


EdmFunctions.AddDays(DbExpression, DbExpression) 方法

定義

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

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ AddDays(System::Data::Common::CommandTrees::DbExpression ^ dateValue, System::Data::Common::CommandTrees::DbExpression ^ addValue);
public static System.Data.Common.CommandTrees.DbFunctionExpression AddDays (this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue);
static member AddDays : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function AddDays (dateValue As DbExpression, addValue As DbExpression) As DbFunctionExpression

參數

dateValue
DbExpression

表達式,指定要加入的值 addValue

addValue
DbExpression

表達式,指定要加入 至 dateValue的天數。

傳回

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

例外狀況

dateValueaddValuenull

dateValueaddValue 無效。

適用於