EntityFunctions.AddMinutes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
调用 AddMinutes
规范函数。 有关 AddMinutes
规范函数的信息,请参阅日期和时间规范函数。
重载
AddMinutes(Nullable<TimeSpan>, Nullable<Int32>) |
调用 |
AddMinutes(Nullable<DateTime>, Nullable<Int32>) |
调用 |
AddMinutes(Nullable<DateTimeOffset>, Nullable<Int32>) |
调用 |
注解
不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。
此函数将转换为数据库中的相应函数。
AddMinutes(Nullable<TimeSpan>, Nullable<Int32>)
调用 AddMinutes
规范函数。 有关 AddMinutes
规范函数的信息,请参阅日期和时间规范函数。
public:
static Nullable<TimeSpan> AddMinutes(Nullable<TimeSpan> timeValue, Nullable<int> addValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "AddMinutes")]
public static TimeSpan? AddMinutes (TimeSpan? timeValue, int? addValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "AddMinutes")>]
static member AddMinutes : Nullable<TimeSpan> * Nullable<int> -> Nullable<TimeSpan>
Public Shared Function AddMinutes (timeValue As Nullable(Of TimeSpan), addValue As Nullable(Of Integer)) As Nullable(Of TimeSpan)
参数
返回
timeValue
增加 addValue
。
- 属性
注解
不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。
此函数将转换为数据库中的相应函数。
适用于
AddMinutes(Nullable<DateTime>, Nullable<Int32>)
调用 AddMinutes
规范函数。 有关 AddMinutes
规范函数的信息,请参阅日期和时间规范函数。
public:
static Nullable<DateTime> AddMinutes(Nullable<DateTime> timeValue, Nullable<int> addValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "AddMinutes")]
public static DateTime? AddMinutes (DateTime? timeValue, int? addValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "AddMinutes")>]
static member AddMinutes : Nullable<DateTime> * Nullable<int> -> Nullable<DateTime>
Public Shared Function AddMinutes (timeValue As Nullable(Of DateTime), addValue As Nullable(Of Integer)) As Nullable(Of DateTime)
参数
返回
timeValue
增加 addValue
。
- 属性
注解
不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。
此函数将转换为数据库中的相应函数。
适用于
AddMinutes(Nullable<DateTimeOffset>, Nullable<Int32>)
调用 AddMinutes
规范函数。 有关 AddMinutes
规范函数的信息,请参阅日期和时间规范函数。
public:
static Nullable<DateTimeOffset> AddMinutes(Nullable<DateTimeOffset> timeValue, Nullable<int> addValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "AddMinutes")]
public static DateTimeOffset? AddMinutes (DateTimeOffset? timeValue, int? addValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "AddMinutes")>]
static member AddMinutes : Nullable<DateTimeOffset> * Nullable<int> -> Nullable<DateTimeOffset>
Public Shared Function AddMinutes (timeValue As Nullable(Of DateTimeOffset), addValue As Nullable(Of Integer)) As Nullable(Of DateTimeOffset)
参数
- timeValue
- Nullable<DateTimeOffset>
一个有效的日期时间偏移。
返回
timeValue
增加 addValue
。
- 属性
注解
不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。
此函数将转换为数据库中的相应函数。