6

db.Database.CreateIfNotExists(); データベースを作成しなくなり、移行を有効にした後は常に true を返します。リリースノードでもそれについて言及されているものは何もありません。それはバグですか?

nuget コンソールで「Enable-Migrations」を実行した後、AutomaticMigrationsEnabled = true または false の両方が機能しないことに注意してください。

public void TestMethod1() {
        //using (var db = new Hive.Models.HiveDbContext()) {
        using (var db = new TestDbContext()) {
            var returnValue = db.Database.CreateIfNotExists();

            Console.WriteLine(returnValue);
        }
    }

public class TestDbContext : DbContext {

}

internal sealed class Configuration : DbMigrationsConfiguration<UnitTestProject1.TestDbContext>
{
    public Configuration()
    {
        AutomaticMigrationsEnabled = true;
    }

    protected override void Seed(UnitTestProject1.TestDbContext context)
    {
        //  This method will be called after migrating to the latest version.

        //  You can use the DbSet<T>.AddOrUpdate() helper extension method 
        //  to avoid creating duplicate seed data. E.g.
        //
        //    context.People.AddOrUpdate(
        //      p => p.FullName,
        //      new Person { FullName = "Andrew Peters" },
        //      new Person { FullName = "Brice Lambson" },
        //      new Person { FullName = "Rowan Miller" }
        //    );
        //
    }
}
4

1 に答える 1

1

EF チームから、これは EF の新しい変更であるとの回答がありました。このスレッドを参照してください。https://entityframework.codeplex.com/discussions/450998

于 2013-10-01T15:59:00.353 に答える