Sdílet prostřednictvím


SqlServerDbFunctionsExtensions.DateTime2FromParts Metoda

Definice

Inicializuje novou instanci DateTime struktury na zadaný rok, měsíc, den, hodinu, minutu, sekundu, zlomky a přesnost. Odpovídá SQL Server DATETIME2FROMPARTS(year, month, day, hour, minute, seconds, fractions, precision).

public static DateTime DateTime2FromParts (this Microsoft.EntityFrameworkCore.DbFunctions _, int year, int month, int day, int hour, int minute, int second, int fractions, int precision);
static member DateTime2FromParts : Microsoft.EntityFrameworkCore.DbFunctions * int * int * int * int * int * int * int * int -> DateTime
<Extension()>
Public Function DateTime2FromParts (_ As DbFunctions, year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, fractions As Integer, precision As Integer) As DateTime

Parametry

_
DbFunctions

Instance DbFunctions.

year
Int32

Rok (1753 až 9999).

month
Int32

Měsíc (1 až 12).

day
Int32

Den (1 až počet dnů v měsíci)

hour
Int32

Hodiny (0 až 23).

minute
Int32

Minuty (0 až 59).

second
Int32

Sekundy (0 až 59).

fractions
Int32

Desetinné sekundy (0 až 9999999).

precision
Int32

Přesnost hodnoty datetime2 (0 až 7)

Návraty

Nová instance DateTime struktury pro zadaný rok, měsíc, den, hodinu, minutu, sekundu, zlomky a přesnost.

Poznámky

Další informace a příklady najdete v tématech Databázové funkcea Přístup k SQL Server a Azure SQL databázím pomocí EF Core.

Platí pro