SqlFuncs.StringConvert Method (Nullable<Double>, Nullable<Int32>)

 

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)

[DbFunctionAttribute("SqlServer", "STR")]
public static string StringConvert(
	Nullable<double> number,
	Nullable<int> length
)

Parameters

number
Type: System.Nullable<Double>

A numeric expression.

length
Type: System.Nullable<Int32>

The total length of the string. This includes decimal point, sign, digits, and spaces. The default is 10.

Return Value

Type: System.String

The numeric input expression converted to a string.

Return to top
Show: