SqlFunctions.Log10 Method

Definition

Overloads

Log10(Nullable<Decimal>)

Returns the base-10 logarithm of the specified input value.

Log10(Nullable<Double>)

Returns the base-10 logarithm of the specified input value.

Log10(Nullable<Decimal>)

Returns the base-10 logarithm of the specified input value.

[System.Data.Entity.DbFunction("SqlServer", "LOG10")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Log10 (Nullable<decimal> arg);
static member Log10 : Nullable<decimal> -> Nullable<double>
Public Shared Function Log10 (arg As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg
Nullable<Decimal>

A numeric expression.

Returns

The base-10 logarithm of the input value.

Attributes

Applies to

Log10(Nullable<Double>)

Returns the base-10 logarithm of the specified input value.

[System.Data.Entity.DbFunction("SqlServer", "LOG10")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Log10 (Nullable<double> arg);
static member Log10 : Nullable<double> -> Nullable<double>
Public Shared Function Log10 (arg As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg
Nullable<Double>

A numeric expression.

Returns

The base-10 logarithm of the input value.

Attributes

Applies to