SqlFunctions.Asin Method

 

Returns the arcsine of the specified value.

Namespace:   System.Data.Entity.SqlServer
Assembly:  EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticAsin(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_CAPS_pubmethodSystem_CAPS_staticAsin(Nullable<Double>)

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


SqlFunctions.Asin Method (Nullable<Decimal>)

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

[DbFunctionAttribute("SqlServer", "ASIN")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
public static Nullable<double> Asin(
	Nullable<decimal> arg
)

Parameters

arg
Type: System.Nullable<Decimal>

The sine of an angle.

Return Value

Type: System.Nullable<Double>

An angle, measured in radians.


SqlFunctions.Asin Method (Nullable<Double>)

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

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
[DbFunctionAttribute("SqlServer", "ASIN")]
public static Nullable<double> Asin(
	Nullable<double> arg
)

Parameters

arg
Type: System.Nullable<Double>

The sine of an angle.

Return Value

Type: System.Nullable<Double>

An angle, measured in radians.