SqlFunctions.Acos Method
Returns the arccosine of the specified value.
Assembly: EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)
Name | Description | |
---|---|---|
![]() ![]() | Acos(Nullable<Decimal>) | A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine. |
![]() ![]() | Acos(Nullable<Double>) | A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine. |
SqlFunctions.Acos Method (Nullable<Decimal>)
A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg1")] [DbFunctionAttribute("SqlServer", "ACOS")] public static Nullable<double> Acos( Nullable<decimal> arg1 )
Parameters
- arg1
-
Type:
System.Nullable<Decimal>
The cosine of an angle.
SqlFunctions.Acos Method (Nullable<Double>)
A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.
[DbFunctionAttribute("SqlServer", "ACOS")] [SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg1")] public static Nullable<double> Acos( Nullable<double> arg1 )
Parameters
- arg1
-
Type:
System.Nullable<Double>
The cosine of an angle.