Share via


DbExpression.FromDecimal(Nullable<Decimal>) Method

Definition

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

public static System.Data.Entity.Core.Common.CommandTrees.DbExpression FromDecimal (Nullable<decimal> value);
static member FromDecimal : Nullable<decimal> -> System.Data.Entity.Core.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