次の方法で共有


SqlFuncs.StringConvert メソッド

定義

オーバーロード

StringConvert(Nullable<Double>)

数値データから変換された文字データを返します。

StringConvert(Nullable<Double>, Nullable<Int32>)

数値データから変換された文字データを返します。

StringConvert(Nullable<Double>)

数値データから変換された文字データを返します。

[System.Data.Entity.DbFunction("SqlServer", "STR")]
public static string StringConvert (double? number);
[<System.Data.Entity.DbFunction("SqlServer", "STR")>]
static member StringConvert : Nullable<double> -> string
Public Shared Function StringConvert (number As Nullable(Of Double)) As String

パラメーター

number
Nullable<Double>

任意の数式を指定します。

戻り値

入力された式を文字列に変換した結果。

属性

適用対象

StringConvert(Nullable<Double>, Nullable<Int32>)

数値データから変換された文字データを返します。

[System.Data.Entity.DbFunction("SqlServer", "STR")]
public static string StringConvert (double? number, int? length);
[<System.Data.Entity.DbFunction("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

パラメーター

number
Nullable<Double>

任意の数式を指定します。

length
Nullable<Int32>

文字列の合計長。 これには小数点、符号、数字、空白文字も含まれます。 既定値は 10 です。

戻り値

入力された数値式を文字列に変換した結果。

属性

適用対象