SqlMethods.DateDiffNanosecond 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算兩個指定之日期間的奈秒界限數。
多載
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)
參數
傳回
當兩個參數都不是 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。