다음을 통해 공유


SqliteDbFunctionsExtensions.Unhex 메서드

정의

오버로드

Unhex(DbFunctions, String)

16진수 문자열의 디코딩을 나타내는 BLOB을 반환하는 SQLite unhex 함수에 매핑됩니다.

Unhex(DbFunctions, String, String)

16진수 문자열의 디코딩을 나타내는 BLOB을 반환하는 SQLite unhex 함수에 매핑됩니다.

Unhex(DbFunctions, String)

16진수 문자열의 디코딩을 나타내는 BLOB을 반환하는 SQLite 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()

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

value
String

16진수 문자열입니다.

반환

Byte[]

16진수 문자열을 이진 값으로 디코딩했습니다.

설명

자세한 내용 과 예제는 데이터베이스 함수EF Core를 사용하여 SQLite 데이터베이스 액세스를 참조하세요.

적용 대상

Unhex(DbFunctions, String, String)

16진수 문자열의 디코딩을 나타내는 BLOB을 반환하는 SQLite 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()

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

value
String

16진수 문자열입니다.

ignoreChars
String

에서 value무시되는 문자입니다.

반환

Byte[]

16진수 문자열을 이진 값으로 디코딩했습니다.

설명

자세한 내용 과 예제는 데이터베이스 함수EF Core를 사용하여 SQLite 데이터베이스 액세스를 참조하세요.

적용 대상