DbFunctions.AddSeconds 方法

定义

重载

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

在用作 LINQ to Entities 查询的一部分时,此方法调用规范 AddSeconds EDM 函数,以将给定的秒数添加到时间跨度。

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

当用作 LINQ to Entities 查询的一部分时,此方法调用规范 AddSeconds EDM 函数,将给定的秒数添加到日期/时间。

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

当用作 LINQ to Entities 查询的一部分时,此方法调用规范 AddSeconds EDM 函数,将给定的秒数添加到日期/时间。

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

在用作 LINQ to Entities 查询的一部分时,此方法调用规范 AddSeconds EDM 函数,以将给定的秒数添加到时间跨度。

[System.Data.Entity.DbFunction("Edm", "AddSeconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="addValue")]
public static Nullable<TimeSpan> AddSeconds (Nullable<TimeSpan> timeValue, Nullable<int> addValue);
static member AddSeconds : Nullable<TimeSpan> * Nullable<int> -> Nullable<TimeSpan>
Public Shared Function AddSeconds (timeValue As Nullable(Of TimeSpan), addValue As Nullable(Of Integer)) As Nullable(Of TimeSpan)

参数

timeValue
Nullable<TimeSpan>

输入日期/时间。

addValue
Nullable<Int32>

要添加的秒数。

返回

生成的时间跨度。

属性

注解

不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。 此函数将转换为数据库中的相应函数。

适用于

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

当用作 LINQ to Entities 查询的一部分时,此方法调用规范 AddSeconds EDM 函数,将给定的秒数添加到日期/时间。

[System.Data.Entity.DbFunction("Edm", "AddSeconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="addValue")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue")]
public static Nullable<DateTime> AddSeconds (Nullable<DateTime> timeValue, Nullable<int> addValue);
static member AddSeconds : Nullable<DateTime> * Nullable<int> -> Nullable<DateTime>
Public Shared Function AddSeconds (timeValue As Nullable(Of DateTime), addValue As Nullable(Of Integer)) As Nullable(Of DateTime)

参数

timeValue
Nullable<DateTime>

输入日期/时间。

addValue
Nullable<Int32>

要添加的秒数。

返回

生成的日期/时间。

属性

注解

不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。 此函数将转换为数据库中的相应函数。

适用于

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

当用作 LINQ to Entities 查询的一部分时,此方法调用规范 AddSeconds EDM 函数,将给定的秒数添加到日期/时间。

[System.Data.Entity.DbFunction("Edm", "AddSeconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="addValue")]
public static Nullable<DateTimeOffset> AddSeconds (Nullable<DateTimeOffset> timeValue, Nullable<int> addValue);
static member AddSeconds : Nullable<DateTimeOffset> * Nullable<int> -> Nullable<DateTimeOffset>
Public Shared Function AddSeconds (timeValue As Nullable(Of DateTimeOffset), addValue As Nullable(Of Integer)) As Nullable(Of DateTimeOffset)

参数

timeValue
Nullable<DateTimeOffset>

输入日期/时间。

addValue
Nullable<Int32>

要添加的秒数。

返回

生成的日期/时间。

属性

注解

不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。 此函数将转换为数据库中的相应函数。

适用于