Condividi tramite


Metodo SqlFunctions.Exp (Nullable<Decimal>)

[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]

Restituisce il valore esponenziale dell'espressione float specificata.

Spazio dei nomi:  System.Data.Entity.SqlServer
Assembly:  EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)

Sintassi

'Dichiarazione
<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId := "Exp")> _
<SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId := "arg")> _
<DbFunctionAttribute("SqlServer", "EXP")> _
Public Shared Function Exp ( _
    arg As Nullable(Of Decimal) _
) As Nullable(Of Double)
'Utilizzo
Dim arg As Nullable(Of Decimal)
Dim returnValue As Nullable(Of Double)

returnValue = SqlFunctions.Exp(arg)
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Exp")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg")]
[DbFunctionAttribute("SqlServer", "EXP")]
public static Nullable<double> Exp(
    Nullable<decimal> arg
)
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = L"Exp")]
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA1801:ReviewUnusedParameters", MessageId = L"arg")]
[DbFunctionAttribute(L"SqlServer", L"EXP")]
public:
static Nullable<double> Exp(
    Nullable<Decimal> arg
)
[<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Exp")>]
[<SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg")>]
[<DbFunctionAttribute("SqlServer", "EXP")>]
static member Exp : 
        arg:Nullable<decimal> -> Nullable<float> 
public static function Exp(
    arg : Nullable<decimal>
) : Nullable<double>

Parametri

Valore restituito

Tipo: System.Nullable<Double>
Costante e elevata alla potenza del valore di input.

Vedere anche

Riferimento

SqlFunctions Classe

Overload Exp

Spazio dei nomi System.Data.Entity.SqlServer