SqlMethods.DateDiffHour 方法

定义

对两个指定日期之间的小时边界进行计数。

重载

DateDiffHour(DateTime, DateTime)

对两个不可以为 null 的日期之间的小时边界进行计数。

DateDiffHour(DateTimeOffset, DateTimeOffset)

对两个不可以为 null 的日期之间的小时边界进行计数。

DateDiffHour(Nullable<DateTime>, Nullable<DateTime>)

对两个可以为 null 的日期之间的小时边界进行计数。

DateDiffHour(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

对两个可以为 null 的日期之间的小时边界进行计数。

注解

对应于 SQL Server DATEDIFF 函数,使用 hour 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

DateDiffHour(DateTime, DateTime)

对两个不可以为 null 的日期之间的小时边界进行计数。

public:
 static int DateDiffHour(DateTime startDate, DateTime endDate);
public static int DateDiffHour (DateTime startDate, DateTime endDate);
static member DateDiffHour : DateTime * DateTime -> int
Public Shared Function DateDiffHour (startDate As DateTime, endDate As DateTime) As Integer

参数

startDate
DateTime

时间段的起始日期。

endDate
DateTime

时间段的结束日期。

返回

两个指定日期之间的小时边界数。

注解

对应于 SQL Server DATEDIFF 函数,使用 hour 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

适用于

DateDiffHour(DateTimeOffset, DateTimeOffset)

对两个不可以为 null 的日期之间的小时边界进行计数。

public:
 static int DateDiffHour(DateTimeOffset startDate, DateTimeOffset endDate);
public static int DateDiffHour (DateTimeOffset startDate, DateTimeOffset endDate);
static member DateDiffHour : DateTimeOffset * DateTimeOffset -> int
Public Shared Function DateDiffHour (startDate As DateTimeOffset, endDate As DateTimeOffset) As Integer

参数

startDate
DateTimeOffset

时间段的起始日期。

endDate
DateTimeOffset

时间段的结束日期。

返回

两个指定日期之间的小时边界数。

注解

对应于 SQL Server DATEDIFF 函数,使用 hour 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

适用于

DateDiffHour(Nullable<DateTime>, Nullable<DateTime>)

对两个可以为 null 的日期之间的小时边界进行计数。

public:
 static Nullable<int> DateDiffHour(Nullable<DateTime> startDate, Nullable<DateTime> endDate);
public static int? DateDiffHour (DateTime? startDate, DateTime? endDate);
static member DateDiffHour : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function DateDiffHour (startDate As Nullable(Of DateTime), endDate As Nullable(Of DateTime)) As Nullable(Of Integer)

参数

startDate
Nullable<DateTime>

时间段的起始日期。

endDate
Nullable<DateTime>

时间段的结束日期。

返回

当两个参数都不为 null 时,返回两个指定日期之间的小时边界数。 当一个参数为或两个参数都为 null 时,返回 null 值。

注解

对应于 SQL Server DATEDIFF 函数,使用 hour 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

适用于

DateDiffHour(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

对两个可以为 null 的日期之间的小时边界进行计数。

public:
 static Nullable<int> DateDiffHour(Nullable<DateTimeOffset> startDate, Nullable<DateTimeOffset> endDate);
public static int? DateDiffHour (DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffHour : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function DateDiffHour (startDate As Nullable(Of DateTimeOffset), endDate As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)

参数

startDate
Nullable<DateTimeOffset>

时间段的起始日期。

endDate
Nullable<DateTimeOffset>

时间段的结束日期。

返回

当两个参数都不为 null 时,返回两个指定日期之间的小时边界数。 当一个参数为或两个参数都为 null 时,返回 null 值。

注解

对应于 SQL Server DATEDIFF 函数,使用 hour 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

适用于