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 查询中。

此函数将转换为数据库中的相应函数。

适用于