Share via


SqliteDbFunctionsExtensions.Unhex Metodo

Definizione

Overload

Unhex(DbFunctions, String)

Esegue il mapping alla funzione SQLite che restituisce un BLOB che rappresenta la decodifica della stringa esadecimale unhex .

Unhex(DbFunctions, String, String)

Esegue il mapping alla funzione SQLite che restituisce un BLOB che rappresenta la decodifica della stringa esadecimale unhex .

Unhex(DbFunctions, String)

Esegue il mapping alla funzione SQLite che restituisce un BLOB che rappresenta la decodifica della stringa esadecimale unhex .

public static byte[] Unhex (this Microsoft.EntityFrameworkCore.DbFunctions _, string value);
static member Unhex : Microsoft.EntityFrameworkCore.DbFunctions * string -> byte[]
<Extension()>
Public Function Unhex (_ As DbFunctions, value As String) As Byte()

Parametri

_
DbFunctions

Istanza di DbFunctions.

value
String

Stringa esadecimale.

Restituisce

Byte[]

Stringa esadecimale decodificata come valore binario.

Commenti

Per altre informazioni ed esempi, vedere Funzioni di database e accesso ai database SQLite con EF Core .

Si applica a

Unhex(DbFunctions, String, String)

Esegue il mapping alla funzione SQLite che restituisce un BLOB che rappresenta la decodifica della stringa esadecimale unhex .

public static byte[] Unhex (this Microsoft.EntityFrameworkCore.DbFunctions _, string value, string ignoreChars);
static member Unhex : Microsoft.EntityFrameworkCore.DbFunctions * string * string -> byte[]
<Extension()>
Public Function Unhex (_ As DbFunctions, value As String, ignoreChars As String) As Byte()

Parametri

_
DbFunctions

Istanza di DbFunctions.

value
String

Stringa esadecimale.

ignoreChars
String

Caratteri ignorati in value.

Restituisce

Byte[]

Stringa esadecimale decodificata come valore binario.

Commenti

Per altre informazioni ed esempi, vedere Funzioni di database e accesso ai database SQLite con EF Core .

Si applica a