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