EdmFunctions.Round 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
정식 'Round' 함수를 호출하는 DbFunctionExpression을 만듭니다.
오버로드
Round(DbExpression) |
결과 형식이 각각 single, double 또는 decimal 형식이어야 하는 지정된 인수를 사용하여 정식 'Round' 함수를 호출하는 DbFunctionExpression을 만듭니다. 식의 결과 형식은 의 |
Round(DbExpression, DbExpression) |
결과 형식이 single, double 또는 decimal 및 정수 형식이어야 하는 지정된 인수를 사용하여 정식 'Round' 함수를 호출하는 DbFunctionExpression을 만듭니다. 식의 결과 형식은 의 |
Round(DbExpression)
결과 형식이 각각 single, double 또는 decimal 형식이어야 하는 지정된 인수를 사용하여 정식 'Round' 함수를 호출하는 DbFunctionExpression을 만듭니다. 식의 결과 형식은 의 value
결과 형식과 동일합니다.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionExpression ^ Round(System::Data::Common::CommandTrees::DbExpression ^ value);
public static System.Data.Common.CommandTrees.DbFunctionExpression Round (this System.Data.Common.CommandTrees.DbExpression value);
static member Round : System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Round (value As DbExpression) As DbFunctionExpression
매개 변수
- value
- DbExpression
반올림할 숫자 값을 지정하는 식입니다.
반환
지정된 인수를 가장 가까운 정수 값으로 반올림하는 새 DbFunctionExpression입니다.
예외
value
은 null
입니다.
value
이 잘못되었습니다.
적용 대상
Round(DbExpression, DbExpression)
결과 형식이 single, double 또는 decimal 및 정수 형식이어야 하는 지정된 인수를 사용하여 정식 'Round' 함수를 호출하는 DbFunctionExpression을 만듭니다. 식의 결과 형식은 의 value
결과 형식과 동일합니다.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionExpression ^ Round(System::Data::Common::CommandTrees::DbExpression ^ value, System::Data::Common::CommandTrees::DbExpression ^ digits);
public static System.Data.Common.CommandTrees.DbFunctionExpression Round (this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits);
static member Round : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Round (value As DbExpression, digits As DbExpression) As DbFunctionExpression
매개 변수
- value
- DbExpression
반올림할 숫자 값을 지정하는 식입니다.
- digits
- DbExpression
반올림할 때 사용할 전체 자릿수를 지정하는 식입니다.
반환
지정된 인수를 에 지정된 정밀도로 가장 가까운 정수 값으로 digits
반올림하는 새 DbFunctionExpression입니다.
예외
value
또는 digits
가 null
인 경우
value
또는 digits
가 잘못되었습니다.
적용 대상
.NET