SqliteDbFunctionsExtensions.Unhex Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Unhex(DbFunctions, String) |
Mappe à la fonction SQLite |
Unhex(DbFunctions, String, String) |
Mappe à la fonction SQLite |
Unhex(DbFunctions, String)
Mappe à la fonction SQLite unhex
qui retourne un objet BLOB représentant le décodage de la chaîne hexadécimale.
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()
Paramètres
Instance DbFunctions.
- value
- String
Chaîne hexadécimale.
Retours
Chaîne hexadécimale décodée en tant que valeur binaire.
Remarques
Pour plus d’informations et d’exemples, consultez Fonctions de base de données et Accès aux bases de données SQLite avec EF Core .
S’applique à
Unhex(DbFunctions, String, String)
Mappe à la fonction SQLite unhex
qui retourne un objet BLOB représentant le décodage de la chaîne hexadécimale.
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()
Paramètres
Instance DbFunctions.
- value
- String
Chaîne hexadécimale.
- ignoreChars
- String
Caractères ignorés dans value
.
Retours
Chaîne hexadécimale décodée en tant que valeur binaire.
Remarques
Pour plus d’informations et d’exemples, consultez Fonctions de base de données et Accès aux bases de données SQLite avec EF Core .