DbExpression Implicit-Konvertierung (Nullable<Boolean> 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 ein boolesches Objekt, das 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 Boolean) _
) As DbExpression
'Usage
Dim input As Nullable(Of Boolean)
Dim output As DbExpression
output = CType(input, DbExpression)
public static implicit operator DbExpression (
Nullable<bool> value
)
static implicit operator DbExpression^ (
Nullable<bool> value
)
JScript supports the use of custom casts, but not the declaration of new ones.
Parameter
- value
Typ: System.Nullable<Boolean>
Das boolesche Objekt, das NULL sein kann.
Rückgabewert
Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein DbExpression, das das konvertierte boolesche Objekt darstellt, das NULL-Werte zulässt.