SqliteDbFunctionsExtensions.Hex(DbFunctions, Byte[]) 方法

定义

映射到 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

DbFunctions 实例。

bytes
Byte[]

二进制值。

返回

十六进制字符串。

注解

有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问 SQLite 数据库

适用于