次の方法で共有


DbFunctions.DiffSeconds メソッド

定義

オーバーロード

DiffSeconds(Nullable<DateTime>, Nullable<DateTime>)

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

DiffSeconds(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

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

DiffSeconds(Nullable<TimeSpan>, Nullable<TimeSpan>)

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

DiffSeconds(Nullable<DateTime>, Nullable<DateTime>)

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

[System.Data.Entity.DbFunction("Edm", "DiffSeconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue2")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue1")]
public static Nullable<int> DiffSeconds (Nullable<DateTime> timeValue1, Nullable<DateTime> timeValue2);
static member DiffSeconds : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function DiffSeconds (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 クエリ内でのみ使用できます。 この関数は、データベース内の対応する関数に変換されます。

適用対象

DiffSeconds(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

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

[System.Data.Entity.DbFunction("Edm", "DiffSeconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue1")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue2")]
public static Nullable<int> DiffSeconds (Nullable<DateTimeOffset> timeValue1, Nullable<DateTimeOffset> timeValue2);
static member DiffSeconds : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function DiffSeconds (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 クエリ内でのみ使用できます。 この関数は、データベース内の対応する関数に変換されます。

適用対象

DiffSeconds(Nullable<TimeSpan>, Nullable<TimeSpan>)

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

[System.Data.Entity.DbFunction("Edm", "DiffSeconds")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue1")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="timeValue2")]
public static Nullable<int> DiffSeconds (Nullable<TimeSpan> timeValue1, Nullable<TimeSpan> timeValue2);
static member DiffSeconds : Nullable<TimeSpan> * Nullable<TimeSpan> -> Nullable<int>
Public Shared Function DiffSeconds (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 クエリ内でのみ使用できます。 この関数は、データベース内の対応する関数に変換されます。

適用対象