SqlFunctions.Log10 Method

 

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

Namespace:   System.Data.Entity.SqlServer
Assembly:  EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticLog10(Nullable<Decimal>)

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

System_CAPS_pubmethodSystem_CAPS_staticLog10(Nullable<Double>)

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


SqlFunctions.Log10 Method (Nullable<Decimal>)

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

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
[DbFunctionAttribute("SqlServer", "LOG10")]
public static Nullable<double> Log10(
	Nullable<decimal> arg
)

Parameters

arg
Type: System.Nullable<Decimal>

A numeric expression.

Return Value

Type: System.Nullable<Double>

The base-10 logarithm of the input value.


SqlFunctions.Log10 Method (Nullable<Double>)

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

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
[DbFunctionAttribute("SqlServer", "LOG10")]
public static Nullable<double> Log10(
	Nullable<double> arg
)

Parameters

arg
Type: System.Nullable<Double>

A numeric expression.

Return Value

Type: System.Nullable<Double>

The base-10 logarithm of the input value.