是否可以在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/

10-12 17:31