是否可以在EntityFramework Core中更改__EFMigrationsHistory
表的架构?
最佳答案
在呼叫UseSqlServer
时执行。
optionsBuilder
.UseSqlServer(
"...",
x => x.MigrationsHistoryTable(
HistoryRepository.DefaultTableName,
"mySchema"));
关于entity-framework-core - Entity Framework 核心-更改“__EFMigrationsHistory”表的架构,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38507861/