SqlFunctions.GetUtcDate Method

Definition

Returns the current database system timestamp as a datetime value. The database time zone offset is not included. This value represents the current UTC time (Coordinated Universal Time). This value is derived from the operating system of the computer on which the instance of SQL Server is running.

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

Returns

The current database UTC timestamp.

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. For information about the corresponding SQL Server function, see GETUTCDATE (Transact-SQL).

Applies to