DbExpression.FromDecimal(Nullable<Decimal>) 方法

定义

创建一个 DbExpression,表示指定的小数值(可以为 null)。

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

参数

value
Nullable<Decimal>

返回的表达式所基于的十进制值。

返回

一个 DbExpression,表示指定的小数值。

适用于