Freigeben über


DbExpression.FromDecimal-Methode

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Erstellt ein DbExpression-Objekt, das den angegebenen Dezimalwert (der Nullwerte zulässt) darstellt.

Namespace:  System.Data.Entity.Core.Common.CommandTrees
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
Public Shared Function FromDecimal ( _
    value As Nullable(Of Decimal) _
) As DbExpression
'Usage
Dim value As Nullable(Of Decimal)
Dim returnValue As DbExpression 

returnValue = DbExpression.FromDecimal(value)
public static DbExpression FromDecimal(
    Nullable<decimal> value
)
public:
static DbExpression^ FromDecimal(
    Nullable<Decimal> value
)
static member FromDecimal : 
        value:Nullable<decimal> -> DbExpression
public static function FromDecimal(
    value : Nullable<decimal>
) : DbExpression

Parameter

Rückgabewert

Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein DbExpression-Objekt, das den angegebenen Dezimalwert darstellt.

Siehe auch

Verweis

DbExpression Klasse

System.Data.Entity.Core.Common.CommandTrees-Namespace