EntityFunctions.AddMinutes 方法

定义

调用 AddMinutes 规范函数。 有关 AddMinutes 规范函数的信息,请参阅日期和时间规范函数

重载

AddMinutes(Nullable<TimeSpan>, Nullable<Int32>)

调用 AddMinutes 规范函数。 有关 AddMinutes 规范函数的信息,请参阅日期和时间规范函数

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

调用 AddMinutes 规范函数。 有关 AddMinutes 规范函数的信息,请参阅日期和时间规范函数

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

调用 AddMinutes 规范函数。 有关 AddMinutes 规范函数的信息,请参阅日期和时间规范函数

注解

不能直接调用此函数。 此函数只能出现在 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
Nullable<TimeSpan>

一个有效的时间跨度。

addValue
Nullable<Int32>

要添加到 timeValue 的分钟数。

返回

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
Nullable<DateTime>

有效日期。

addValue
Nullable<Int32>

要添加到 timeValue 的分钟数。

返回

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>

一个有效的日期时间偏移。

addValue
Nullable<Int32>

要添加到 timeValue 的分钟数。

返回

timeValue 增加 addValue

属性

注解

不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。

此函数将转换为数据库中的相应函数。

适用于