RelationalDbContextOptionsBuilder<TBuilder,TExtension>.MigrationsHistoryTable 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
配置用于记录哪些迁移已应用于数据库的表的名称。
public virtual TBuilder MigrationsHistoryTable (string tableName, string schema = default);
public virtual TBuilder MigrationsHistoryTable (string tableName, string? schema = default);
abstract member MigrationsHistoryTable : string * string -> 'Builder
override this.MigrationsHistoryTable : string * string -> 'Builder
Public Overridable Function MigrationsHistoryTable (tableName As String, Optional schema As String = Nothing) As TBuilder
参数
- tableName
- String
表的名称。
- schema
- String
表的架构。
返回
TBuilder
同一生成器实例,以便可以链接多个调用。
注解
有关详细信息和示例 ,请参阅数据库迁移 。