使用 codefIrst 时是否可以更改表名“__MigrationsHistory”?问题:我正在使用 Oracle 数据库,并且我有创建新表的规则。其中之一是不能有任何带有特殊字符的表名或字段。
问问题
723 次
2 回答
0
请参阅此链接 -更改 EF __Migration History 表的名称是否危险?
这将解释如何重命名数据库以及应该做什么。
于 2017-06-19T21:03:07.097 回答
0
这有点晚了,但是可以帮助那些难以使用DBContexts
同一个数据库方案的人。
为了重命名__MigrationHistory
表;创建一个实现HistoryContext
类并覆盖父OnModelCreating
方法的自定义类。然后创建一个自定义配置类,传递我们自定义HistoryContext
的 withSetDefaultHistoryContext
方法。
请看一下System.Data.Entity.Migrations.History.HistoryContext
自定义HistoryContext
类;
public class YourHistoryContext : HistoryContext
{
public YourHistoryContext(System.Data.Common.DbConnection dbConnection, string defaultSchema)
: base(dbConnection, defaultSchema)
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<HistoryRow>().ToTable(tableName: "YourCustomMigrationHistory"/*, schemaName: "dbo__OrYourCustomScheme"*/);
//Rename Id column name.
//modelBuilder.Entity<HistoryRow>().Property(p => p.MigrationId).HasColumnName("Migration_ID");
}
}
创建自定义DbConfiguration
类;
public class MigrationHistoryConfiguration : DbConfiguration
{
public MigrationHistoryConfiguration()
{
//this.SetHistoryContext("System.Data.SqlClient",
// (connection, defaultSchema) => new HistoryContext(connection, defaultSchema));
this.SetDefaultHistoryContext((connection, defaultSchema) => new YourHistoryContext(connection, defaultSchema));
}
}
于 2018-12-21T07:14:30.170 回答