EdmFunctions.AddYears(DbExpression, DbExpression) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立會使用指定引數叫用標準 'AddYears' 函式的 DbFunctionExpression,其中的引數必須具有 DateTime 或 DateTimeOffset 以及整數結果型別。 運算式的結果類型與 dateValue 的結果類型相同。
public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression AddYears (this System.Data.Entity.Core.Common.CommandTrees.DbExpression dateValue, System.Data.Entity.Core.Common.CommandTrees.DbExpression addValue);
static member AddYears : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function AddYears (dateValue As DbExpression, addValue As DbExpression) As DbFunctionExpression
參數
- dateValue
- DbExpression
運算式,指定要加入 addValueshould 的值。
- addValue
- DbExpression
運算式,指定要加入至 dateValue 的年數。
傳回
新的 DbFunctionExpression,可將 addValue 所指定的年數新增至 dateValue 所指定的值。