SqliteDbFunctionsExtensions.Unhex Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Unhex(DbFunctions, String) |
Esegue il mapping alla funzione SQLite che restituisce un BLOB che rappresenta la decodifica della stringa esadecimale |
Unhex(DbFunctions, String, String) |
Esegue il mapping alla funzione SQLite che restituisce un BLOB che rappresenta la decodifica della stringa esadecimale |
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
Istanza di DbFunctions.
- value
- String
Stringa esadecimale.
Restituisce
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
Istanza di DbFunctions.
- value
- String
Stringa esadecimale.
- ignoreChars
- String
Caratteri ignorati in value
.
Restituisce
Stringa esadecimale decodificata come valore binario.
Commenti
Per altre informazioni ed esempi, vedere Funzioni di database e accesso ai database SQLite con EF Core .