SqliteDbFunctionsExtensions.Unhex メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Unhex(DbFunctions, String) |
16 進文字列のデコードを表す BLOB を返す SQLite |
Unhex(DbFunctions, String, String) |
16 進文字列のデコードを表す BLOB を返す SQLite |
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 のインスタンスです。
- 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 のインスタンスです。
- value
- String
16 進数の文字列。
- ignoreChars
- String
で value
無視される文字。
戻り値
Byte[]
バイナリ値としてデコードされた 16 進文字列。
注釈
詳細と例については、「 データベース関数」および 「EF Core を使用した SQLite データベースへのアクセス 」を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Entity Framework