SqlCeFunctions.Degrees Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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("SqlServerCe", "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
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("SqlServerCe", "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
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("SqlServerCe", "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
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("SqlServerCe", "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
Returns
The specified angle converted to degrees.
- Attributes
Applies to
Entity Framework