Freigeben über


DbExpression Implicit-Konvertierung (Nullable<Int64> to DbExpression)

[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.]

Konvertiert eine 64-Bit-Ganzzahl ohne Vorzeichen, die NULL-Werte zulässt, in einen DbExpression.

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

Syntax

'Declaration
Public Shared Widening Operator CType ( _
    value As Nullable(Of Long) _
) As DbExpression
'Usage
Dim input As Nullable(Of Long)
Dim output As DbExpression 

output = CType(input, DbExpression)
public static implicit operator DbExpression (
    Nullable<long> value
)
static implicit operator DbExpression^ (
    Nullable<long long> value
)
JScript supports the use of custom casts, but not the declaration of new ones.

Parameter

  • value
    Typ: System.Nullable<Int64>
    Eine vorzeichenlose 64-Bit-Ganzzahl, die auf NULL festgelegt werden kann.

Rückgabewert

Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein DbExpression, der die 64-Bit-Ganzzahl ohne Vorzeichen, die NULL-Werte zulässt, darstellt.

Siehe auch

Verweis

DbExpression Klasse

Implicit-Überladung

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