DbFunctions.CreateTime Method

Definition

When used as part of a LINQ to Entities query, this method invokes the canonical CreateTime EDM function to create a new TimeSpan object.

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

Parameters

hour
Nullable<Int32>

The hours.

minute
Nullable<Int32>

The minutes.

second
Nullable<Double>

The seconds, including fractional parts of the seconds if desired.

Returns

The new time span.

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