共用方式為


EntityFunctions.AddYears 方法

定義

叫用標準 AddYears 函式。 如需標準 AddYears 函式的資訊,請參閱日期及時間標準函式

多載

AddYears(Nullable<DateTimeOffset>, Nullable<Int32>)

叫用標準 AddYears 函式。 如需標準 AddYears 函式的資訊,請參閱日期及時間標準函式

AddYears(Nullable<DateTime>, Nullable<Int32>)

叫用標準 AddYears 函式。 如需標準 AddYears 函式的資訊,請參閱日期及時間標準函式

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。

AddYears(Nullable<DateTimeOffset>, Nullable<Int32>)

叫用標準 AddYears 函式。 如需標準 AddYears 函式的資訊,請參閱日期及時間標準函式

public:
 static Nullable<DateTimeOffset> AddYears(Nullable<DateTimeOffset> dateValue, Nullable<int> addValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "AddYears")]
public static DateTimeOffset? AddYears (DateTimeOffset? dateValue, int? addValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "AddYears")>]
static member AddYears : Nullable<DateTimeOffset> * Nullable<int> -> Nullable<DateTimeOffset>
Public Shared Function AddYears (dateValue As Nullable(Of DateTimeOffset), addValue As Nullable(Of Integer)) As Nullable(Of DateTimeOffset)

參數

dateValue
Nullable<DateTimeOffset>

有效的日期時間位移。

addValue
Nullable<Int32>

要加入至 dateValue 的年數。

傳回

累加 dateValue 後的 addValue

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。

適用於

AddYears(Nullable<DateTime>, Nullable<Int32>)

叫用標準 AddYears 函式。 如需標準 AddYears 函式的資訊,請參閱日期及時間標準函式

public:
 static Nullable<DateTime> AddYears(Nullable<DateTime> dateValue, Nullable<int> addValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "AddYears")]
public static DateTime? AddYears (DateTime? dateValue, int? addValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "AddYears")>]
static member AddYears : Nullable<DateTime> * Nullable<int> -> Nullable<DateTime>
Public Shared Function AddYears (dateValue As Nullable(Of DateTime), addValue As Nullable(Of Integer)) As Nullable(Of DateTime)

參數

dateValue
Nullable<DateTime>

有效的日期。

addValue
Nullable<Int32>

要加入至 dateValue 的年數。

傳回

累加 dateValue 後的 addValue

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。

適用於