SqliteDbFunctionsExtensions.Hex(DbFunctions, Byte[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
對應至 SQLite hex
函式,此函式會傳回代表指定值的十六進位字串。
public static string Hex (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[] bytes);
static member Hex : Microsoft.EntityFrameworkCore.DbFunctions * byte[] -> string
<Extension()>
Public Function Hex (_ As DbFunctions, bytes As Byte()) As String
參數
DbFunctions 執行個體。
- bytes
- Byte[]
二進位值。
傳回
十六進位字串。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取 SQLite 資料庫和資料庫函式。