SqlFunctions.Radians 方法

定义

以度为单位返回对应于指定角度的弧度度量值。

重载

名称 说明
Radians(Nullable<Decimal>)

以度为单位返回对应于指定角度的弧度度量值。

Radians(Nullable<Double>)

以度为单位返回对应于指定角度的弧度度量值。

Radians(Nullable<Int32>)

以度为单位返回对应于指定角度的弧度度量值。

Radians(Nullable<Int64>)

以度为单位返回对应于指定角度的弧度度量值。

注解

不能直接调用此函数。 此函数只能在 LINQ to Entities 查询中显示。

此函数将转换为数据库中的相应函数。 有关相应的SQL Server函数的信息,请参阅 RADIANS (Transact-SQL)

Radians(Nullable<Decimal>)

以度为单位返回对应于指定角度的弧度度量值。

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)

参数

arg
Nullable<Decimal>

角度(以度为单位)。

返回

指定角度的弧度度量值。

属性

注解

不能直接调用此函数。 此函数只能在 LINQ to Entities 查询中显示。

此函数将转换为数据库中的相应函数。 有关相应的SQL Server函数的信息,请参阅 RADIANS (Transact-SQL)

适用于

Radians(Nullable<Double>)

以度为单位返回对应于指定角度的弧度度量值。

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)

参数

arg
Nullable<Double>

角度(以度为单位)。

返回

指定角度的弧度度量值。

属性

注解

不能直接调用此函数。 此函数只能在 LINQ to Entities 查询中显示。

此函数将转换为数据库中的相应函数。 有关相应的SQL Server函数的信息,请参阅 RADIANS (Transact-SQL)

适用于

Radians(Nullable<Int32>)

以度为单位返回对应于指定角度的弧度度量值。

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)

参数

arg
Nullable<Int32>

角度(以度为单位)。

返回

指定角度的弧度度量值。

属性

注解

不能直接调用此函数。 此函数只能在 LINQ to Entities 查询中显示。

此函数将转换为数据库中的相应函数。 有关相应的SQL Server函数的信息,请参阅 RADIANS (Transact-SQL)

适用于

Radians(Nullable<Int64>)

以度为单位返回对应于指定角度的弧度度量值。

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)

参数

arg
Nullable<Int64>

角度(以度为单位)。

返回

指定角度的弧度度量值。

属性

注解

不能直接调用此函数。 此函数只能在 LINQ to Entities 查询中显示。

此函数将转换为数据库中的相应函数。 有关相应的SQL Server函数的信息,请参阅 RADIANS (Transact-SQL)

适用于