Share via


SqlFunctions.Exp Method

Definition

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.

Exp(Nullable<Decimal>)

Returns the exponential value of the specified float expression.

[System.Data.Entity.DbFunction("SqlServer", "EXP")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="Exp")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Exp (Nullable<decimal> arg);
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

Applies to

Exp(Nullable<Double>)

Returns the exponential value of the specified float expression.

[System.Data.Entity.DbFunction("SqlServer", "EXP")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId="Exp")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Exp (Nullable<double> arg);
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

Applies to