DbExpression.FromInt32-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, das den angegebenen Int32-Wert (der Nullwerte zulässt) darstellt.
Namespace: System.Data.Entity.Core.Common.CommandTrees
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Shared Function FromInt32 ( _
value As Nullable(Of Integer) _
) As DbExpression
'Usage
Dim value As Nullable(Of Integer)
Dim returnValue As DbExpression
returnValue = DbExpression.FromInt32(value)
public static DbExpression FromInt32(
Nullable<int> value
)
public:
static DbExpression^ FromInt32(
Nullable<int> value
)
static member FromInt32 :
value:Nullable<int> -> DbExpression
public static function FromInt32(
value : Nullable<int>
) : DbExpression
Parameter
- value
Typ: System.Nullable<Int32>
Der Int32-Wert, auf dem der zurückgegebene Ausdruck basieren soll.
Rückgabewert
Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein DbExpression, das den angegebenen Int32-Wert darstellt.