SqlFunctions.Tan Method

Definition

Overloads

Tan(Nullable<Decimal>)

Returns the trigonometric tangent of the input expression.

Tan(Nullable<Double>)

Returns the trigonometric tangent of the input expression.

Tan(Nullable<Decimal>)

Returns the trigonometric tangent of the input expression.

[System.Data.Entity.DbFunction("SqlServer", "TAN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Tan (Nullable<decimal> arg);
static member Tan : Nullable<decimal> -> Nullable<double>
Public Shared Function Tan (arg As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg
Nullable<Decimal>

An angle, measured in radians.

Returns

The tangent of the input angle.

Attributes

Applies to

Tan(Nullable<Double>)

Returns the trigonometric tangent of the input expression.

[System.Data.Entity.DbFunction("SqlServer", "TAN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Tan (Nullable<double> arg);
static member Tan : Nullable<double> -> Nullable<double>
Public Shared Function Tan (arg As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg
Nullable<Double>

An angle, measured in radians.

Returns

The tangent of the input angle.

Attributes

Applies to