EdmFunctions.CreateDateTime 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 인수를 사용하여 정식 'CreateDateTime' 함수를 호출하는 DbFunctionExpression을 만듭니다. second
는 Edm.Double의 결과 형식이어야 하지만 다른 모든 인수에는 Edm.Int32의 결과 형식이 있어야 합니다. 식의 결과 형식은 Edm.DateTime입니다.
public:
static System::Data::Common::CommandTrees::DbFunctionExpression ^ CreateDateTime(System::Data::Common::CommandTrees::DbExpression ^ year, System::Data::Common::CommandTrees::DbExpression ^ month, System::Data::Common::CommandTrees::DbExpression ^ day, System::Data::Common::CommandTrees::DbExpression ^ hour, System::Data::Common::CommandTrees::DbExpression ^ minute, System::Data::Common::CommandTrees::DbExpression ^ second);
public static System.Data.Common.CommandTrees.DbFunctionExpression CreateDateTime (System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second);
static member CreateDateTime : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
Public Function CreateDateTime (year As DbExpression, month As DbExpression, day As DbExpression, hour As DbExpression, minute As DbExpression, second As DbExpression) As DbFunctionExpression
매개 변수
- year
- DbExpression
새 DateTime 인스턴스에 연도 값을 제공하는 식입니다.
- month
- DbExpression
새 DateTime 인스턴스에 월 값을 제공하는 식입니다.
- day
- DbExpression
새 DateTime 인스턴스에 일 값을 제공하는 식입니다.
- hour
- DbExpression
새 DateTime 인스턴스에 시 값을 제공하는 식입니다.
- minute
- DbExpression
새 DateTime 인스턴스에 분 값을 제공하는 식입니다.
- second
- DbExpression
새 DateTime 인스턴스에 초 값을 제공하는 식입니다.
반환
지정된 값을 기반으로 새로운 DateTime을 반환하는 새 DbFunctionExpression입니다.
예외
year
, month
, day
, hour
, minute
또는 second
는 입니다 null
.
year
, month
, day
, hour
, minute
또는 second
가 잘못되었습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET