다음을 통해 공유


SqlServerDbFunctionsExtensions.SmallDateTimeFromParts 메서드

정의

구조체의 DateTime 새 instance 지정된 연도, 월, 일, 시간 및 분으로 초기화합니다. SQL Server SMALLDATETIMEFROMPARTS(year, month, day, hour, minute)에 해당합니다.

public static DateTime SmallDateTimeFromParts (this Microsoft.EntityFrameworkCore.DbFunctions _, int year, int month, int day, int hour, int minute);
static member SmallDateTimeFromParts : Microsoft.EntityFrameworkCore.DbFunctions * int * int * int * int * int -> DateTime
<Extension()>
Public Function SmallDateTimeFromParts (_ As DbFunctions, year As Integer, month As Integer, day As Integer, hour As Integer, minute 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까지)

반환

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

설명

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

적용 대상