다음을 통해 공유


SqlServerDbFunctionsExtensions.DateTimeFromParts 메서드

정의

DateTime 구조체의 새 인스턴스를 지정된 연도, 월, 일, 시, 분, 초 및 밀리초로 초기화합니다. SQL Server DATETIMEFROMPARTS(year, month, day, hour, minute, second, millisecond)에 해당합니다.

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

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

year
Int32

연도(1753~9999).

month
Int32

월(1부터 12까지)

day
Int32

일(1부터 month에 있는 일수까지)

hour
Int32

시(0부터 23까지)

minute
Int32

분(0부터 59까지)

second
Int32

초(0부터 59까지)

millisecond
Int32

밀리초(0부터 999까지)

반환

구조체 DateTime 의 새 instance 지정된 연도, 월, 일, 시간, 분, 초 및 밀리초로 지정됩니다.

설명

자세한 내용 및 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상