EntityFunctions.AddYears 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
调用 AddYears
规范函数。 有关 AddYears
规范函数的信息,请参阅日期和时间规范函数。
重载
AddYears(Nullable<DateTimeOffset>, Nullable<Int32>) |
调用 |
AddYears(Nullable<DateTime>, Nullable<Int32>) |
调用 |
注解
不能直接调用此函数。 此函数只能出现在 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>
一个有效的日期时间偏移。
返回
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
增加 addValue
。
- 属性
注解
不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。
此函数将转换为数据库中的相应函数。