SqlFunctions.Asin Method
Returns the arcsine of the specified value.
Assembly: EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)
Name | Description | |
---|---|---|
![]() ![]() | 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. |
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.
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.