DbFunctions.DiffMicroseconds-Methode (Nullable<DateTime>, Nullable<DateTime>)
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Wenn sie als Teil einer LINQ to Entities-Abfrage verwendet wird, ruft diese Methode die kanonische DiffMicroseconds-EDM-Funktion auf, um die Anzahl an Mikrosekunden zwischen zwei Daten/Uhrzeiten zu berechnen.
Namespace: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<DbFunctionAttribute("Edm", "DiffMicroseconds")> _
<SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId := "timeValue1")> _
<SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId := "timeValue2")> _
Public Shared Function DiffMicroseconds ( _
timeValue1 As Nullable(Of DateTime), _
timeValue2 As Nullable(Of DateTime) _
) As Nullable(Of Integer)
'Usage
Dim timeValue1 As Nullable(Of DateTime)
Dim timeValue2 As Nullable(Of DateTime)
Dim returnValue As Nullable(Of Integer)
returnValue = DbFunctions.DiffMicroseconds(timeValue1, _
timeValue2)
[DbFunctionAttribute("Edm", "DiffMicroseconds")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "timeValue1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "timeValue2")]
public static Nullable<int> DiffMicroseconds(
Nullable<DateTime> timeValue1,
Nullable<DateTime> timeValue2
)
[DbFunctionAttribute(L"Edm", L"DiffMicroseconds")]
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA1801:ReviewUnusedParameters", MessageId = L"timeValue1")]
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA1801:ReviewUnusedParameters", MessageId = L"timeValue2")]
public:
static Nullable<int> DiffMicroseconds(
Nullable<DateTime> timeValue1,
Nullable<DateTime> timeValue2
)
[<DbFunctionAttribute("Edm", "DiffMicroseconds")>]
[<SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "timeValue1")>]
[<SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "timeValue2")>]
static member DiffMicroseconds :
timeValue1:Nullable<DateTime> *
timeValue2:Nullable<DateTime> -> Nullable<int>
public static function DiffMicroseconds(
timeValue1 : Nullable<DateTime>,
timeValue2 : Nullable<DateTime>
) : Nullable<int>
Parameter
- timeValue1
Typ: System.Nullable<DateTime>
Das erste Datum/die erste Uhrzeit.
- timeValue2
Typ: System.Nullable<DateTime>
Das zweite Datum/die zweite Uhrzeit.
Rückgabewert
Typ: System.Nullable<Int32>
Die Anzahl der Mikrosekunden zwischen dem ersten und zweiten Datum/der ersten und zweiten Uhrzeit.
Hinweise
Sie können diese Funktion nicht direkt aufrufen. Diese Funktion kann nur innerhalb einer LINQ to Entities-Abfrage vorkommen. Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.