SqlCeFunctions.Exp Method

 

Returns the exponential value of the specified float expression.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticExp(Nullable<Decimal>)

Returns the exponential value of the specified float expression.

System_CAPS_pubmethodSystem_CAPS_staticExp(Nullable<Double>)

Returns the exponential value of the specified float expression.


SqlCeFunctions.Exp Method (Nullable<Decimal>)

Returns the exponential value of the specified float expression.

[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", 
	MessageId = "Exp")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
[DbFunctionAttribute("SqlServerCe", "EXP")]
public static Nullable<double> Exp(
	Nullable<decimal> arg
)

Parameters

arg
Type: System.Nullable<Decimal>

The input value.

Return Value

Type: System.Nullable<Double>

The constant e raised to the power of the input value.


SqlCeFunctions.Exp Method (Nullable<Double>)

Returns the exponential value of the specified float expression.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
[DbFunctionAttribute("SqlServerCe", "EXP")]
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", 
	MessageId = "Exp")]
public static Nullable<double> Exp(
	Nullable<double> arg
)

Parameters

arg
Type: System.Nullable<Double>

The input value.

Return Value

Type: System.Nullable<Double>

The constant e raised to the power of the input value.