SqlFunctions.Tan Method

Definition

Returns the trigonometric tangent of the input expression.

Overloads

Tan(Nullable<Decimal>)

Returns the trigonometric tangent of the input expression.

Tan(Nullable<Double>)

Returns the trigonometric tangent of the input expression.

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see TAN (Transact-SQL).

Tan(Nullable<Decimal>)

Returns the trigonometric tangent of the input expression.

public:
 static Nullable<double> Tan(Nullable<System::Decimal> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "TAN")]
public static double? Tan (decimal? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "TAN")>]
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

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see TAN (Transact-SQL).

Applies to

Tan(Nullable<Double>)

Returns the trigonometric tangent of the input expression.

public:
 static Nullable<double> Tan(Nullable<double> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "TAN")]
public static double? Tan (double? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "TAN")>]
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

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see TAN (Transact-SQL).

Applies to