Compartir a través de


SqlMethods.DateDiffMicrosecond Método

Definición

Cuenta el número de límites de microsegundo entre dos fechas especificadas.

Sobrecargas

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

Cuenta el número de límites de microsegundo entre dos fechas que aceptan valores NULL.

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

Cuenta el número de límites de microsegundo entre dos fechas que aceptan valores NULL.

DateDiffMicrosecond(DateTime, DateTime)

Cuenta el número de límites de microsegundo entre dos fechas que no aceptan valores NULL.

DateDiffMicrosecond(DateTimeOffset, DateTimeOffset)

Cuenta el número de límites de microsegundo entre dos fechas que no aceptan valores NULL.

Comentarios

Corresponde a la función SQL Server DATEDIFF utilizando millisecond para especificar el tipo de límite de tiempo cruzado. Para obtener más información sobre esta función de SQL Server, consulte DATEDIFF.

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

Cuenta el número de límites de microsegundo entre dos fechas que aceptan valores 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)

Parámetros

startDate
Nullable<DateTimeOffset>

Fecha de inicio del período de tiempo.

endDate
Nullable<DateTimeOffset>

Fecha final del período de tiempo.

Devoluciones

Cuando ninguno de estos parámetros es null, devuelve el número de límites de microsegundo entre las dos fechas especificadas. Cuando uno de los parámetros o ambos son null, devuelve un valor null.

Comentarios

Corresponde a la función SQL Server DATEDIFF utilizando microsecond para especificar el tipo de límite de tiempo cruzado. Para obtener más información sobre esta función de SQL Server, consulte DATEDIFF.

Se aplica a

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

Cuenta el número de límites de microsegundo entre dos fechas que aceptan valores 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)

Parámetros

startDate
Nullable<DateTime>

Fecha de inicio del período de tiempo.

endDate
Nullable<DateTime>

Fecha final del período de tiempo.

Devoluciones

Cuando ninguno de estos parámetros es null, devuelve el número de límites de microsegundo entre las dos fechas especificadas. Cuando uno de los parámetros o ambos son null, devuelve un valor null.

Comentarios

Corresponde a la función SQL Server DATEDIFF utilizando microsecond para especificar el tipo de límite de tiempo cruzado. Para obtener más información sobre esta función de SQL Server, consulte DATEDIFF.

Se aplica a

DateDiffMicrosecond(DateTime, DateTime)

Cuenta el número de límites de microsegundo entre dos fechas que no aceptan valores 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

Parámetros

startDate
DateTime

Fecha de inicio del período de tiempo.

endDate
DateTime

Fecha final del período de tiempo.

Devoluciones

Número de límites de microsegundo entre las dos fechas especificadas.

Comentarios

Corresponde a la función SQL Server DATEDIFF utilizando microsecond para especificar el tipo de límite de tiempo cruzado. Para obtener más información sobre esta función de SQL Server, consulte DATEDIFF.

Se aplica a

DateDiffMicrosecond(DateTimeOffset, DateTimeOffset)

Cuenta el número de límites de microsegundo entre dos fechas que no aceptan valores 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

Parámetros

startDate
DateTimeOffset

Fecha de inicio del período de tiempo.

endDate
DateTimeOffset

Fecha final del período de tiempo.

Devoluciones

Número de límites de microsegundo entre las dos fechas especificadas.

Comentarios

Corresponde a la función SQL Server DATEDIFF utilizando microsecond para especificar el tipo de límite de tiempo cruzado. Para obtener más información sobre esta función de SQL Server, consulte DATEDIFF.

Se aplica a