DbExpression.FromDecimal(Nullable<Decimal>) Method

Definition

Creates a DbExpression that represents the specified (nullable) decimal value.

public:
 static System::Data::Common::CommandTrees::DbExpression ^ FromDecimal(Nullable<System::Decimal> value);
public static System.Data.Common.CommandTrees.DbExpression FromDecimal (decimal? value);
static member FromDecimal : Nullable<decimal> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Function FromDecimal (value As Nullable(Of Decimal)) As DbExpression

Parameters

value
Nullable<Decimal>

The decimal value on which the returned expression should be based.

Returns

A DbExpression that represents the specified decimal value.

Applies to