共用方式為


EntityFunctions.TruncateTime 方法

定義

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

多載

TruncateTime(Nullable<DateTime>)

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

TruncateTime(Nullable<DateTimeOffset>)

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

備註

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

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

TruncateTime(Nullable<DateTime>)

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

public:
 static Nullable<DateTime> TruncateTime(Nullable<DateTime> dateValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "TruncateTime")]
public static DateTime? TruncateTime (DateTime? dateValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "TruncateTime")>]
static member TruncateTime : Nullable<DateTime> -> Nullable<DateTime>
Public Shared Function TruncateTime (dateValue As Nullable(Of DateTime)) As Nullable(Of DateTime)

參數

dateValue
Nullable<DateTime>

要截斷的日期。

傳回

已清除時間部分的輸入日期。

屬性

備註

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

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

適用於

TruncateTime(Nullable<DateTimeOffset>)

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

public:
 static Nullable<DateTimeOffset> TruncateTime(Nullable<DateTimeOffset> dateValue);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "TruncateTime")]
public static DateTimeOffset? TruncateTime (DateTimeOffset? dateValue);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "TruncateTime")>]
static member TruncateTime : Nullable<DateTimeOffset> -> Nullable<DateTimeOffset>
Public Shared Function TruncateTime (dateValue As Nullable(Of DateTimeOffset)) As Nullable(Of DateTimeOffset)

參數

dateValue
Nullable<DateTimeOffset>

要截斷的日期時間位移。

傳回

已清除時間部分的輸入日期。

屬性

備註

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

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

適用於