다음을 통해 공유


SqlServerDbFunctionsExtensions.DateFromParts 메서드

정의

구조체의 DateTime 새 instance 지정된 연도, 월, 일로 초기화합니다. SQL Server DATEFROMPARTS(year, month, day)에 해당합니다.

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

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

year
Int32

연도(1753~9999).

month
Int32

월(1부터 12까지)

day
Int32

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

반환

구조체의 DateTime 새 instance 지정된 연도, 월, 일입니다.

설명

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

적용 대상