다음을 통해 공유


SqlServerDbFunctionsExtensions.TimeFromParts 메서드

정의

구조체의 TimeSpan 새 instance 지정된 시간, 분, 초, 분수 및 정밀도로 초기화합니다. SQL Server TIMEFROMPARTS(hour, minute, seconds, fractions, precision)에 해당합니다.

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

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

hour
Int32

시(0부터 23까지)

minute
Int32

분(0부터 59까지)

second
Int32

초(0부터 59까지)

fractions
Int32

소수 자릿수 초(0~9999999)입니다.

precision
Int32

시간 값의 전체 자릿수(0~7)입니다.

반환

구조체의 TimeSpan 새 instance 지정된 시간, 분, 초, 분수 및 정밀도로 지정됩니다.

설명

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

적용 대상