SqlMethods.DateDiffMillisecond Method (DateTimeOffset, DateTimeOffset)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Counts the number of millisecond boundaries between two non-nullable dates.
Namespace: System.Data.Linq.SqlClient
Assembly: System.Data.Linq (in System.Data.Linq.dll)
Syntax
'Declaration
Public Shared Function DateDiffMillisecond ( _
startDate As DateTimeOffset, _
endDate As DateTimeOffset _
) As Integer
public static int DateDiffMillisecond(
DateTimeOffset startDate,
DateTimeOffset endDate
)
Parameters
- startDate
Type: System.DateTimeOffset
The start date for the time period.
- endDate
Type: System.DateTimeOffset
The end date for the time period.
Return Value
Type: System.Int32
The number of millisecond boundaries between the two specified dates.
Remarks
Corresponds to the SQL Server DATEDIFF function; using millisecond to specify the type of time boundary crossed. For more about this SQL Server function, see DATEDIFF in the Microsoft SQL Server Books Online.
Version Information
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also