SqlFunctions.Log 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.
Overloads
Log(Nullable<Decimal>) |
Returns the natural logarithm of the specified input value. |
Log(Nullable<Double>) |
Returns the natural logarithm of the specified input value. |
Log(Nullable<Decimal>)
Returns the natural logarithm of the specified input value.
[System.Data.Entity.DbFunction("SqlServer", "LOG")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Log (Nullable<decimal> arg);
static member Log : Nullable<decimal> -> Nullable<double>
Public Shared Function Log (arg As Nullable(Of Decimal)) As Nullable(Of Double)
Parameters
Returns
The natural logarithm of the input value.
- Attributes
Applies to
Log(Nullable<Double>)
Returns the natural logarithm of the specified input value.
[System.Data.Entity.DbFunction("SqlServer", "LOG")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Log (Nullable<double> arg);
static member Log : Nullable<double> -> Nullable<double>
Public Shared Function Log (arg As Nullable(Of Double)) As Nullable(Of Double)
Parameters
Returns
The natural logarithm of the input value.
- Attributes
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.
Entity Framework