SqlFunctions.Exp Method

Definition

Returns the exponential value of the specified float expression.

Overloads

Exp(Nullable<Decimal>)

Returns the exponential value of the specified float expression.

Exp(Nullable<Double>)

Returns the exponential value of the specified float 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 EXP (Transact-SQL).

Exp(Nullable<Decimal>)

Returns the exponential value of the specified float expression.

public:
 static Nullable<double> Exp(Nullable<System::Decimal> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "EXP")]
public static double? Exp (decimal? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "EXP")>]
static member Exp : Nullable<decimal> -> Nullable<double>
Public Shared Function Exp (arg As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg
Nullable<Decimal>

The input value.

Returns

The constant e raised to the power of the input value.

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 EXP (Transact-SQL).

Applies to

Exp(Nullable<Double>)

Returns the exponential value of the specified float expression.

public:
 static Nullable<double> Exp(Nullable<double> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "EXP")]
public static double? Exp (double? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "EXP")>]
static member Exp : Nullable<double> -> Nullable<double>
Public Shared Function Exp (arg As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg
Nullable<Double>

The input value.

Returns

The constant e raised to the power of the input value.

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 EXP (Transact-SQL).

Applies to