共用方式為


EntityFunctions.CreateTime 方法

定義

叫用標準 CreateTime 函式。 如需標準 CreateTime 函式的資訊,請參閱日期及時間標準函式

public:
 static Nullable<TimeSpan> CreateTime(Nullable<int> hour, Nullable<int> minute, Nullable<double> second);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "CreateTime")]
public static TimeSpan? CreateTime (int? hour, int? minute, double? second);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "CreateTime")>]
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)

參數

hour
Nullable<Int32>

新時間範圍的小時部分。

minute
Nullable<Int32>

新時間範圍的分鐘數部分。

second
Nullable<Double>

新時間範圍的秒數部分。 請注意,您可以透過這個參數指定秒數的分數。

傳回

新的時間範圍。

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。

適用於