Sdílet prostřednictvím


EntityFunctions.CreateDateTime Metoda

Definice

Při použití jako součást dotazu LINQ to Entities tato metoda vyvolá kanonickou funkci CreateDateTime EDM k vytvoření nového DateTime objektu.

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

Parametry

year
Nullable<Int32>

Rok.

month
Nullable<Int32>

Měsíc (založený na 1).

day
Nullable<Int32>

Den (založený na 1).

hour
Nullable<Int32>

Hodiny.

minute
Nullable<Int32>

Minuty.

second
Nullable<Double>

Sekundy, včetně desetinných částí sekund v případě potřeby.

Návraty

Nové datum a čas.

Atributy

Poznámky

Tuto funkci nelze volat přímo. Tato funkce se může zobrazit pouze v rámci LINQ to Entities dotazu. Tato funkce se přeloží do odpovídající funkce v databázi.

Platí pro