SqlFunctions.StringConvert 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
오버로드
StringConvert(Nullable<Decimal>) |
숫자 데이터에서 변환된 문자 데이터를 반환합니다. |
StringConvert(Nullable<Double>) |
숫자 데이터에서 변환된 문자 데이터를 반환합니다. |
StringConvert(Nullable<Decimal>, Nullable<Int32>) |
숫자 데이터에서 변환된 문자 데이터를 반환합니다. |
StringConvert(Nullable<Double>, Nullable<Int32>) |
숫자 데이터에서 변환된 문자 데이터를 반환합니다. |
StringConvert(Nullable<Decimal>, Nullable<Int32>, Nullable<Int32>) |
숫자 데이터에서 변환된 문자 데이터를 반환합니다. |
StringConvert(Nullable<Double>, Nullable<Int32>, Nullable<Int32>) |
숫자 데이터에서 변환된 문자 데이터를 반환합니다. |
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
StringConvert(Nullable<Decimal>)
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
public:
static System::String ^ StringConvert(Nullable<System::Decimal> number);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")]
public static string StringConvert (decimal? number);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<decimal> -> string
Public Shared Function StringConvert (number As Nullable(Of Decimal)) As String
매개 변수
반환
문자열로 변환된 입력 식입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
적용 대상
StringConvert(Nullable<Double>)
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
public:
static System::String ^ StringConvert(Nullable<double> number);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")]
public static string StringConvert (double? number);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<double> -> string
Public Shared Function StringConvert (number As Nullable(Of Double)) As String
매개 변수
반환
문자열로 변환된 숫자 입력 식입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
적용 대상
StringConvert(Nullable<Decimal>, Nullable<Int32>)
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
public:
static System::String ^ StringConvert(Nullable<System::Decimal> number, Nullable<int> length);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")]
public static string StringConvert (decimal? number, int? length);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<decimal> * Nullable<int> -> string
Public Shared Function StringConvert (number As Nullable(Of Decimal), length As Nullable(Of Integer)) As String
매개 변수
반환
문자열로 변환된 입력 식입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
적용 대상
StringConvert(Nullable<Double>, Nullable<Int32>)
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
public:
static System::String ^ StringConvert(Nullable<double> number, Nullable<int> length);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")]
public static string StringConvert (double? number, int? length);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<double> * Nullable<int> -> string
Public Shared Function StringConvert (number As Nullable(Of Double), length As Nullable(Of Integer)) As String
매개 변수
반환
문자열로 변환된 숫자 입력 식입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
적용 대상
StringConvert(Nullable<Decimal>, Nullable<Int32>, Nullable<Int32>)
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
public:
static System::String ^ StringConvert(Nullable<System::Decimal> number, Nullable<int> length, Nullable<int> decimalArg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")]
public static string StringConvert (decimal? number, int? length, int? decimalArg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<decimal> * Nullable<int> * Nullable<int> -> string
Public Shared Function StringConvert (number As Nullable(Of Decimal), length As Nullable(Of Integer), decimalArg As Nullable(Of Integer)) As String
매개 변수
소수점 오른쪽의 자릿수입니다.
decimalArg
은 16보다 작거나 같아야 합니다.
decimalArg
이 16보다 크면 결과가 소수점 이하 16자리에서 잘립니다.
반환
문자열로 변환된 입력 식입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
적용 대상
StringConvert(Nullable<Double>, Nullable<Int32>, Nullable<Int32>)
숫자 데이터에서 변환된 문자 데이터를 반환합니다.
public:
static System::String ^ StringConvert(Nullable<double> number, Nullable<int> length, Nullable<int> decimalArg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")]
public static string StringConvert (double? number, int? length, int? decimalArg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<double> * Nullable<int> * Nullable<int> -> string
Public Shared Function StringConvert (number As Nullable(Of Double), length As Nullable(Of Integer), decimalArg As Nullable(Of Integer)) As String
매개 변수
소수점 오른쪽의 자릿수입니다.
decimalArg
은 16보다 작거나 같아야 합니다.
decimalArg
이 16보다 크면 결과가 소수점 이하 16자리에서 잘립니다.
반환
문자열로 변환된 숫자 입력 식입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 STR(Transact-SQL)을 참조하세요.
적용 대상
.NET