SqlFunctions.Asin Method

Definition

A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.

Overloads

Asin(Nullable<Decimal>)

A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.

Asin(Nullable<Double>)

A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.

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 ASIN (Transact-SQL).

Asin(Nullable<Decimal>)

A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.

public:
 static Nullable<double> Asin(Nullable<System::Decimal> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ASIN")]
public static double? Asin (decimal? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ASIN")>]
static member Asin : Nullable<decimal> -> Nullable<double>
Public Shared Function Asin (arg As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg
Nullable<Decimal>

The sine of an angle.

Returns

An angle, measured in radians.

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 ASIN (Transact-SQL).

Applies to

Asin(Nullable<Double>)

A mathematical function that returns the angle, in radians, whose sine is the specified numerical value. This angle is called the arcsine.

public:
 static Nullable<double> Asin(Nullable<double> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ASIN")]
public static double? Asin (double? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ASIN")>]
static member Asin : Nullable<double> -> Nullable<double>
Public Shared Function Asin (arg As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg
Nullable<Double>

The sine of an angle.

Returns

An angle, measured in radians.

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 ASIN (Transact-SQL).

Applies to