SqlMethods.DateDiffNanosecond 方法

定义

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

重载

DateDiffNanosecond(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

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

DateDiffNanosecond(Nullable<DateTime>, Nullable<DateTime>)

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

DateDiffNanosecond(DateTime, DateTime)

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

DateDiffNanosecond(DateTimeOffset, DateTimeOffset)

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

DateDiffNanosecond(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

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

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

适用于

DateDiffNanosecond(Nullable<DateTime>, Nullable<DateTime>)

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

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

适用于

DateDiffNanosecond(DateTime, DateTime)

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

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

参数

startDate
DateTime

时间段的起始日期。

endDate
DateTime

时间段的结束日期。

返回

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

注解

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

适用于

DateDiffNanosecond(DateTimeOffset, DateTimeOffset)

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

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

参数

startDate
DateTimeOffset

时间段的起始日期。

endDate
DateTimeOffset

时间段的结束日期。

返回

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

注解

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

适用于