IMigrationsIdGenerator 接口

定义

用于从名称和标识符中生成名称的迁移标识符的服务。

public interface IMigrationsIdGenerator
type IMigrationsIdGenerator = interface
Public Interface IMigrationsIdGenerator

注解

服务生存期为 Singleton。 这意味着多个实例使用 DbContext 单个实例。 实现必须是线程安全的。 此服务不能依赖于注册为 的服务 Scoped

有关详细信息和示例 ,请参阅数据库迁移

方法

GenerateId(String)

生成给定迁移名称的标识符。

GetName(String)

获取基于给定标识符的迁移名称。

IsValidId(String)

检查给定的字符串是否为有效的迁移标识符。

适用于