实体框架核心不会创建迁移文件

时间:2017-01-25 15:53:30

标签: c# asp.net asp.net-core .net-core entity-framework-core

我已完成模型结构并运行

  

sudo dotnet ef migrations添加3-MyMigration

命令但是在Migration文件夹中没有创建文件。

这是输出:

 Project SocioFal (.NETCoreApp,Version=v1.0) will be compiled because project is not safe for incremental compilation. Use --build-profile flag for more information.
 Compiling SocioFal for .NETCoreApp,Version=v1.0
 Bundling with configuration from /home/aymeric/dotnet_projects/sociofal/SocioFal/bundleconfig.json
 Processing wwwroot/css/site.min.css
 Processing wwwroot/js/site.min.js
 Compilation succeeded.
    0 Warning(s)
    0 Error(s)
 Time elapsed 00:00:04.0311963
 (The compilation time can be improved. Run "dotnet build --build-profile" for more information)

使用详细标记:

Project SocioFal (.NETCoreApp,Version=v1.0) will be compiled because project is not safe for incremental compilation. Use --build-profile flag for more information.
Compiling SocioFal for .NETCoreApp,Version=v1.0
Bundling with configuration from /home/aymeric/dotnet_projects/sociofal/SocioFal/bundleconfig.json
Processing wwwroot/css/site.min.css
Processing wwwroot/js/site.min.js
Compilation succeeded.
0 Warning(s)
0 Error(s)
Time elapsed 00:00:13.1481501
(The compilation time can be improved. Run "dotnet build --build-profile" for more information)
Setting app base path /home/aymeric/dotnet_projects/sociofal/SocioFal/bin/Debug/netcoreapp1.0
Finding DbContext classes...
Using context 'ApplicationDbContext'.

因此没有显示错误。

以下是使用的上下文:

    public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
    public DbSet<GenealogyRelation> GenealogyRelation { get; set; }

    public DbSet<FalEvent> FalEvent { get; set; }
    public DbSet<GenealogyFalEvent> GenealogyFalEvent { get; set; }
    public DbSet<BaptemeFalEvent> BaptemeFalEvent { get; set; }

    public DbSet<AdoptionFalEvent> AdoptionFalEvent { get; set; }

    public DbSet<ConfirmationFalEvent> ConfirmationFalEvent { get; set; }


    public DbSet<GenealogyCityAndFieldFalEvent> GenealogyCityAndFieldFalEvent { get; set; }


    public DbSet<City> City { get; set; }
    public DbSet<FalProfile> FalProfile { get; set; }
    public DbSet<SocialProfile> SocialProfile { get; set; }

    public DbSet<StudyField> StudyField { get; set; }
    public DbSet<UserStudyField> UserStudyField { get; set; }

    public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
        : base(options)
    {
    }

    protected override void OnModelCreating(ModelBuilder builder)
    {
        builder.Entity<GenealogyFalEvent>().ToTable("GenealogyFalEvent");
        builder.Entity<BaptemeFalEvent>().ToTable("BaptemeFalEvent");
        builder.Entity<ConfirmationFalEvent>().ToTable("ConfirmationFalEvent");
        builder.Entity<AdoptionFalEvent>().ToTable("AdoptionFalEvent");
        base.OnModelCreating(builder);
        // Customize the ASP.NET Identity model and override the defaults if needed.
        // For example, you can rename the ASP.NET Identity table names and more.
        // Add your customizations after calling base.OnModelCreating(builder);
        builder.Entity<GenealogyRelation>().HasKey((e) => new {e.ChildID, e.GenealogyFalEventID, e.ParentID});
        builder.Entity<UserCity>().HasKey(u => new {u.CityID, u.UserID});
        builder.Entity<UserStudyField>().HasKey(u => new {u.StudyFieldID, u.UserID});

    }
}

为什么EF Core不会创建迁移文件?

1 个答案:

答案 0 :(得分:0)

您的模型真的需要迁移吗?如果你没有修改它,因为上次迁移ef可能不需要生成迁移。

只是猜测不确定。