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