SqlFunctions.Radians 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.
Returns the radian measure corresponding to the specified angle in degrees.
Overloads
Radians(Nullable<Decimal>) |
Returns the radian measure corresponding to the specified angle in degrees. |
Radians(Nullable<Double>) |
Returns the radian measure corresponding to the specified angle in degrees. |
Radians(Nullable<Int32>) |
Returns the radian measure corresponding to the specified angle in degrees. |
Radians(Nullable<Int64>) |
Returns the radian measure corresponding to the specified angle in degrees. |
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see RADIANS (Transact-SQL).
Radians(Nullable<Decimal>)
Returns the radian measure corresponding to the specified angle in degrees.
public:
static Nullable<System::Decimal> Radians(Nullable<System::Decimal> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")]
public static decimal? Radians (decimal? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")>]
static member Radians : Nullable<decimal> -> Nullable<decimal>
Public Shared Function Radians (arg As Nullable(Of Decimal)) As Nullable(Of Decimal)
Parameters
Returns
The radian measure of the specified angle.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see RADIANS (Transact-SQL).
Applies to
Radians(Nullable<Double>)
Returns the radian measure corresponding to the specified angle in degrees.
public:
static Nullable<double> Radians(Nullable<double> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")]
public static double? Radians (double? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")>]
static member Radians : Nullable<double> -> Nullable<double>
Public Shared Function Radians (arg As Nullable(Of Double)) As Nullable(Of Double)
Parameters
Returns
The radian measure of the specified angle.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see RADIANS (Transact-SQL).
Applies to
Radians(Nullable<Int32>)
Returns the radian measure corresponding to the specified angle in degrees.
public:
static Nullable<int> Radians(Nullable<int> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")]
public static int? Radians (int? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")>]
static member Radians : Nullable<int> -> Nullable<int>
Public Shared Function Radians (arg As Nullable(Of Integer)) As Nullable(Of Integer)
Parameters
Returns
The radian measure of the specified angle.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see RADIANS (Transact-SQL).
Applies to
Radians(Nullable<Int64>)
Returns the radian measure corresponding to the specified angle in degrees.
public:
static Nullable<long> Radians(Nullable<long> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")]
public static long? Radians (long? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "RADIANS")>]
static member Radians : Nullable<int64> -> Nullable<int64>
Public Shared Function Radians (arg As Nullable(Of Long)) As Nullable(Of Long)
Parameters
Returns
The radian measure of the specified angle.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see RADIANS (Transact-SQL).