SqlFunctions.Exp Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
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).