SqlFunctions.Exp Method
Returns the exponential value of the specified float expression.
Assembly: EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)
Name | Description | |
---|---|---|
![]() ![]() | Exp(Nullable<Decimal>) | Returns the exponential value of the specified float expression. |
![]() ![]() | Exp(Nullable<Double>) | Returns the exponential value of the specified float expression. |
SqlFunctions.Exp Method (Nullable<Decimal>)
Returns the exponential value of the specified float expression.
[DbFunctionAttribute("SqlServer", "EXP")] [SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Exp")] [SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg")] public static Nullable<double> Exp( Nullable<decimal> arg )
Parameters
- arg
-
Type:
System.Nullable<Decimal>
The input value.
SqlFunctions.Exp Method (Nullable<Double>)
Returns the exponential value of the specified float expression.
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Exp")] [SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg")] [DbFunctionAttribute("SqlServer", "EXP")] public static Nullable<double> Exp( Nullable<double> arg )
Parameters
- arg
-
Type:
System.Nullable<Double>
The input value.