SqlFunctions.Degrees Method

Definition

Overloads

Degrees(Nullable<Int64>)

Returns the corresponding angle in degrees for an angle specified in radians.

Degrees(Nullable<Int32>)

Returns the corresponding angle in degrees for an angle specified in radians.

Degrees(Nullable<Double>)

Returns the corresponding angle in degrees for an angle specified in radians.

Degrees(Nullable<Decimal>)

Returns the corresponding angle in degrees for an angle specified in radians.

Degrees(Nullable<Int64>)

Returns the corresponding angle in degrees for an angle specified in radians.

[System.Data.Entity.DbFunction("SqlServer", "DEGREES")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<long> Degrees (Nullable<long> arg1);
static member Degrees : Nullable<int64> -> Nullable<int64>
Public Shared Function Degrees (arg1 As Nullable(Of Long)) As Nullable(Of Long)

Parameters

arg1
Nullable<Int64>

An angle, measured in radians.

Returns

The specified angle converted to degrees.

Attributes

Applies to

Degrees(Nullable<Int32>)

Returns the corresponding angle in degrees for an angle specified in radians.

[System.Data.Entity.DbFunction("SqlServer", "DEGREES")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<int> Degrees (Nullable<int> arg1);
static member Degrees : Nullable<int> -> Nullable<int>
Public Shared Function Degrees (arg1 As Nullable(Of Integer)) As Nullable(Of Integer)

Parameters

arg1
Nullable<Int32>

An angle, measured in radians.

Returns

The specified angle converted to degrees.

Attributes

Applies to

Degrees(Nullable<Double>)

Returns the corresponding angle in degrees for an angle specified in radians.

[System.Data.Entity.DbFunction("SqlServer", "DEGREES")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<double> Degrees (Nullable<double> arg1);
static member Degrees : Nullable<double> -> Nullable<double>
Public Shared Function Degrees (arg1 As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg1
Nullable<Double>

An angle, measured in radians.

Returns

The specified angle converted to degrees.

Attributes

Applies to

Degrees(Nullable<Decimal>)

Returns the corresponding angle in degrees for an angle specified in radians.

[System.Data.Entity.DbFunction("SqlServer", "DEGREES")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<decimal> Degrees (Nullable<decimal> arg1);
static member Degrees : Nullable<decimal> -> Nullable<decimal>
Public Shared Function Degrees (arg1 As Nullable(Of Decimal)) As Nullable(Of Decimal)

Parameters

arg1
Nullable<Decimal>

An angle, measured in radians.

Returns

The specified angle converted to degrees.

Attributes

Applies to