Share via


SqlFuncs.StringConvert Method (Nullable<Double>)

 

Returns character data converted from numeric data.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Entity (in Microsoft.WindowsAzure.Mobile.Service.Entity.dll)

Syntax

[DbFunctionAttribute("SqlServer", "STR")]
public static string StringConvert(
    Nullable<double> number
)
public:
[DbFunctionAttribute("SqlServer", "STR")]
static String^ StringConvert(
    Nullable<double> number
)
[<DbFunctionAttribute("SqlServer", "STR")>]
static member StringConvert : 
        number:Nullable<float> -> string
<DbFunctionAttribute("SqlServer", "STR")>
Public Shared Function StringConvert (
    number As Nullable(Of Double)
) As String

Parameters

Return Value

Type: System.String

The input expression converted to a string.

See Also

StringConvert Overload
SqlFuncs Class
Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top