SqliteDbFunctionsExtensions.Unhex Méthode

Définition

Surcharges

Unhex(DbFunctions, String)

Mappe à la fonction SQLite unhex qui retourne un objet BLOB représentant le décodage de la chaîne hexadécimale.

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.

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

_
DbFunctions

Instance DbFunctions.

value
String

Chaîne hexadécimale.

Retours

Byte[]

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

_
DbFunctions

Instance DbFunctions.

value
String

Chaîne hexadécimale.

ignoreChars
String

Caractères ignorés dans value.

Retours

Byte[]

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 à