SqliteDbFunctionsExtensions 类

定义

包含 Microsoft.EntityFrameworkCore.Sqlite 提供程序的 上的 DbFunctions 扩展方法。

public static class SqliteDbFunctionsExtensions
type SqliteDbFunctionsExtensions = class
Public Module SqliteDbFunctionsExtensions
继承
SqliteDbFunctionsExtensions

注解

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

方法

Glob(DbFunctions, String, String)

映射到 SQLite glob 函数,该函数类似于 Like(DbFunctions, String, String) ,但改用文件系统通配语法。

Hex(DbFunctions, Byte[])

映射到 SQLite hex 函数,该函数返回表示指定值的十六进制字符串。

Substr(DbFunctions, Byte[], Int32)

映射到 SQLite substr 函数,该函数返回指定值的子数组。 子数组从 开始 startIndex ,一直持续到值的末尾。

Substr(DbFunctions, Byte[], Int32, Int32)

映射到 SQLite 子字符串函数,该函数返回指定值的子数组。 子数组从 开始 startIndex ,具有指定的 length

Unhex(DbFunctions, String)

映射到 SQLite unhex 函数,该函数返回表示十六进制字符串解码的 BLOB。

Unhex(DbFunctions, String, String)

映射到 SQLite unhex 函数,该函数返回表示十六进制字符串解码的 BLOB。

适用于