Freigeben über


DbExpression Implicit-Konvertierung (Byte[] 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 Array von 8-Bit-Ganzzahlen ohne Vorzeichen in einen DbExpression.

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

Syntax

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

output = CType(input, DbExpression)
public static implicit operator DbExpression (
    byte[] value
)
static implicit operator DbExpression^ (
    array<unsigned char>^ value
)
JScript supports the use of custom casts, but not the declaration of new ones.

Parameter

  • value
    Typ: System.Byte[]
    Ein Array von 8-Bit-Ganzzahlen ohne Vorzeichen.

Rückgabewert

Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein DbExpression, der den konvertierte Array von 8-Bit-Ganzzahlen ohne Vorzeichen darstellt.

Siehe auch

Verweis

DbExpression Klasse

Implicit-Überladung

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