SqlServerDbFunctionsExtensions.SmallDateTimeFromParts 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구조체의 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 인스턴스입니다.
- 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 데이터베이스 액세스를 참조하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework