SqlMethods.DateDiffMicrosecond 方法

定义

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

重载

DateDiffMicrosecond(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

对两个可为 null 的日期之间的微秒边界进行计数。

DateDiffMicrosecond(Nullable<DateTime>, Nullable<DateTime>)

对两个可为 null 的日期之间的微秒边界进行计数。

DateDiffMicrosecond(DateTime, DateTime)

对两个不可为 null 的日期之间的微秒边界进行计数。

DateDiffMicrosecond(DateTimeOffset, DateTimeOffset)

对两个不可为 null 的日期之间的微秒边界进行计数。

注解

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

DateDiffMicrosecond(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

对两个可为 null 的日期之间的微秒边界进行计数。

public:
 static Nullable<int> DateDiffMicrosecond(Nullable<DateTimeOffset> startDate, Nullable<DateTimeOffset> endDate);
public static int? DateDiffMicrosecond (DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffMicrosecond : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function DateDiffMicrosecond (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 函数,使用 microsecond 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

适用于

DateDiffMicrosecond(Nullable<DateTime>, Nullable<DateTime>)

对两个可为 null 的日期之间的微秒边界进行计数。

public:
 static Nullable<int> DateDiffMicrosecond(Nullable<DateTime> startDate, Nullable<DateTime> endDate);
public static int? DateDiffMicrosecond (DateTime? startDate, DateTime? endDate);
static member DateDiffMicrosecond : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function DateDiffMicrosecond (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 函数,使用 microsecond 指定跨越的时间边界的类型。 有关此SQL Server函数的详细信息,请参阅 DATEDIFF

适用于

DateDiffMicrosecond(DateTime, DateTime)

对两个不可为 null 的日期之间的微秒边界进行计数。

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

参数

startDate
DateTime

时间段的起始日期。

endDate
DateTime

时间段的结束日期。

返回

两个指定日期之间的微秒边界数。

注解

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

适用于

DateDiffMicrosecond(DateTimeOffset, DateTimeOffset)

对两个不可为 null 的日期之间的微秒边界进行计数。

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

参数

startDate
DateTimeOffset

时间段的起始日期。

endDate
DateTimeOffset

时间段的结束日期。

返回

两个指定日期之间的微秒边界数。

注解

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

适用于