SqlFunctions.Asin Method

Definition

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.

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.

[System.Data.Entity.DbFunction("SqlServer", "ASIN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Asin (Nullable<decimal> arg);
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

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.

[System.Data.Entity.DbFunction("SqlServer", "ASIN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Asin (Nullable<double> arg);
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

Applies to