EntityFunctions.DiffNanoseconds Method

Definition

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

Overloads

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

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

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

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

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

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database.

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

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

public:
 static Nullable<int> DiffNanoseconds(Nullable<TimeSpan> timeValue1, Nullable<TimeSpan> timeValue2);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "DiffNanoseconds")]
public static int? DiffNanoseconds (TimeSpan? timeValue1, TimeSpan? timeValue2);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "DiffNanoseconds")>]
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)

Parameters

timeValue1
Nullable<TimeSpan>

A valid date.

timeValue2
Nullable<TimeSpan>

A valid date.

Returns

The number of nanoseconds between timeValue1 and timeValue2.

Attributes

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database.

Applies to

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

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

public:
 static Nullable<int> DiffNanoseconds(Nullable<DateTimeOffset> timeValue1, Nullable<DateTimeOffset> timeValue2);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "DiffNanoseconds")]
public static int? DiffNanoseconds (DateTimeOffset? timeValue1, DateTimeOffset? timeValue2);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "DiffNanoseconds")>]
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)

Parameters

timeValue1
Nullable<DateTimeOffset>

A valid date time offset.

timeValue2
Nullable<DateTimeOffset>

A valid date time offset.

Returns

The number of nanoseconds between timeValue1 and timeValue2.

Attributes

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database.

Applies to

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

Invokes the canonical DiffNanoseconds function. For information about the canonical DiffNanoseconds function, see Date and Time Canonical Functions.

public:
 static Nullable<int> DiffNanoseconds(Nullable<DateTime> timeValue1, Nullable<DateTime> timeValue2);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "DiffNanoseconds")]
public static int? DiffNanoseconds (DateTime? timeValue1, DateTime? timeValue2);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "DiffNanoseconds")>]
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)

Parameters

timeValue1
Nullable<DateTime>

A valid date.

timeValue2
Nullable<DateTime>

A valid date.

Returns

The number of nanoseconds between timeValue1 and timeValue2.

Attributes

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database.

Applies to