次の方法で共有


EntityFunctions.DiffNanoseconds メソッド

定義

オーバーロード

DiffNanoseconds(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

LINQ to Entities クエリの一部として使用すると、このメソッドは正規の DiffNanoseconds EDM 関数を呼び出して、2 つの日付/時刻のナノ秒数を計算します。

DiffNanoseconds(Nullable<TimeSpan>, Nullable<TimeSpan>)

LINQ to Entities クエリの一部として使用する場合、このメソッドは正規の DiffNanoseconds EDM 関数を呼び出して、2 つの期間のナノ秒数を計算します。

DiffNanoseconds(Nullable<DateTime>, Nullable<DateTime>)

LINQ to Entities クエリの一部として使用すると、このメソッドは正規の DiffNanoseconds EDM 関数を呼び出して、2 つの日付/時刻のナノ秒数を計算します。

DiffNanoseconds(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

LINQ to Entities クエリの一部として使用すると、このメソッドは正規の DiffNanoseconds EDM 関数を呼び出して、2 つの日付/時刻のナノ秒数を計算します。

[System.Data.Entity.DbFunction("Edm", "DiffNanoseconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue1")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue2")]
public static Nullable<int> DiffNanoseconds (Nullable<DateTimeOffset> timeValue1, Nullable<DateTimeOffset> timeValue2);
static member DiffNanoseconds : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function DiffNanoseconds (timeValue1 As Nullable(Of DateTimeOffset), timeValue2 As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)

パラメーター

timeValue1
Nullable<DateTimeOffset>

最初の日付/時刻。

timeValue2
Nullable<DateTimeOffset>

2 番目の日付/時刻。

戻り値

1 番目と 2 番目の日付/時刻の間のナノ秒の数。

属性

注釈

この関数を直接呼び出すことはできません。 この関数は、LINQ to Entities クエリ内でのみ使用できます。 この関数は、データベース内の対応する関数に変換されます。

適用対象

DiffNanoseconds(Nullable<TimeSpan>, Nullable<TimeSpan>)

LINQ to Entities クエリの一部として使用する場合、このメソッドは正規の DiffNanoseconds EDM 関数を呼び出して、2 つの期間のナノ秒数を計算します。

[System.Data.Entity.DbFunction("Edm", "DiffNanoseconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue1")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue2")]
public static Nullable<int> DiffNanoseconds (Nullable<TimeSpan> timeValue1, Nullable<TimeSpan> timeValue2);
static member DiffNanoseconds : Nullable<TimeSpan> * Nullable<TimeSpan> -> Nullable<int>
Public Shared Function DiffNanoseconds (timeValue1 As Nullable(Of TimeSpan), timeValue2 As Nullable(Of TimeSpan)) As Nullable(Of Integer)

パラメーター

timeValue1
Nullable<TimeSpan>

最初の期間。

timeValue2
Nullable<TimeSpan>

2 番目の期間。

戻り値

1 番目と 2 番目の期間の間のナノ秒の数。

属性

注釈

この関数を直接呼び出すことはできません。 この関数は、LINQ to Entities クエリ内でのみ使用できます。 この関数は、データベース内の対応する関数に変換されます。

適用対象

DiffNanoseconds(Nullable<DateTime>, Nullable<DateTime>)

LINQ to Entities クエリの一部として使用すると、このメソッドは正規の DiffNanoseconds EDM 関数を呼び出して、2 つの日付/時刻のナノ秒数を計算します。

[System.Data.Entity.DbFunction("Edm", "DiffNanoseconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue1")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue2")]
public static Nullable<int> DiffNanoseconds (Nullable<DateTime> timeValue1, Nullable<DateTime> timeValue2);
static member DiffNanoseconds : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function DiffNanoseconds (timeValue1 As Nullable(Of DateTime), timeValue2 As Nullable(Of DateTime)) As Nullable(Of Integer)

パラメーター

timeValue1
Nullable<DateTime>

最初の日付/時刻。

timeValue2
Nullable<DateTime>

2 番目の日付/時刻。

戻り値

1 番目と 2 番目の日付/時刻の間のナノ秒の数。

属性

注釈

この関数を直接呼び出すことはできません。 この関数は、LINQ to Entities クエリ内でのみ使用できます。 この関数は、データベース内の対応する関数に変換されます。

適用対象