我正在使用Entity Framework 7处理我的第一个项目,并且正在连接到已经创建了数据库的SQL Server,但其中还没有表。我创建了我的DbContext
并创建了一个类,然后在我的上下文中设置了DbSet<>
。我运行命令以启用迁移并创建第一次迁移,然后使用rand命令更新数据库。一切看起来都很好,没有出现错误,但是当我查看数据库时,只创建了EFMigraitonsHistory
表。当我查看为初始迁移创建的类时,它基本上是空白的。我做错了什么?
我正在运行的命令:
dnvm install latest -r coreclr
dnx ef migrations add MyFirstMigration
dnx ef database update
上下文:
namespace JobSight.DAL
{
public class JobSightDBContext : DbContext
{
public DbSet<NavigationMenu> NavigationMenu { get; set; }
}
}
表类:
namespace JobSight.DAL
{
public class NavigationMenu
{
[Required, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Int16 ID { get; set; }
public string ControllerName { get; set; }
public string ActionName { get; set; }
public string ExternalURL { get; set; }
public string Title { get; set; }
public Int16? ParentID { get; set; }
public virtual NavigationMenu Parent { get; set; }
}
}
Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddEntityFramework()
.AddSqlServer()
.AddDbContext<JobSightDBContext>(options =>
{
options.UseSqlServer(Configuration["Data:JobSightDatabase:ConnectionString"]);
});
}
初始迁移类(由EF自动生成):
namespace JobSight.WebUI.Migrations
{
public partial class Initial : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
}
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}
编辑: 在做了Poke的建议后,这是我新的自动生成的迁移。但是,该表仍未在数据库级别创建。
namespace JobSight.WebUI.Migrations
{
public partial class MyFirstMigration : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "NavigationMenu",
columns: table => new
{
ID = table.Column<short>(nullable: false)
.Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn),
ActionName = table.Column<string>(nullable: true),
ControllerName = table.Column<string>(nullable: true),
ExternalURL = table.Column<string>(nullable: true),
ParentID = table.Column<short>(nullable: true),
Title = table.Column<string>(nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_NavigationMenu", x => x.ID);
table.ForeignKey(
name: "FK_NavigationMenu_NavigationMenu_ParentID",
column: x => x.ParentID,
principalTable: "NavigationMenu",
principalColumn: "ID",
onDelete: ReferentialAction.Restrict);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable("NavigationMenu");
}
}
}
答案 0 :(得分:15)
您需要先在数据库上下文中设置实体。至少,您需要这样做:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<NavigationMenu>();
}
您的项目布局中隐藏了迁移问题。所以你拥有的是一个包含实体和数据库上下文的JobSight.DAL
项目。然后你有一个项目JobSight.WebUI
,它是包含Startup.cs
和数据库设置的实际ASP项目。
这会导致问题,因为默认情况下,EF只会假设查找当前程序集中的所有内容。因此,如果要从Web项目启动ef
命令,即使上下文位于另一个项目中,它也会在那里创建迁移。但是,当您尝试应用迁移时,EF将无法找到它,因为它只会查看上下文的项目。
因此,要解决此问题,您需要在DAL
项目中创建迁移。您可以通过在调用ef
命令时指定项目来执行此操作:
dnx ef migrations add Example -p JobSight.DAL
您可以通过之后运行dnx ef migrations list
来验证这是否有效。现在应该返回Example
迁移;以前,该命令没有返回任何内容:它找不到迁移,这就是为什么update
命令只说Done
(没有应用迁移)并且没有创建数据库的原因。因此,如果您现在可以在那里进行迁移,则可以使用以下方法应用它:
dnx ef database update
请注意,由于现在在DAL项目中创建了迁移,您需要在那里添加对EntityFramework.MicrosoftSqlServer
的引用,否则项目将无法编译。您需要先执行此操作,然后才能运行上面的list
命令。
最后,有关此问题的更多信息,请参阅this issue。
答案 1 :(得分:2)
虽然这不是原始问题的答案,但我在这里发布我的答案,因为它可能会帮助有类似问题的人。我的问题还在于没有创建表,但dotnet ef migrations add InitialCreate
确实在 Migrations 文件夹中创建了3 .cs文件。但dotnet ef database update
仅创建了MigrationsHistory表,而dotnet ef migrations list
未返回任何迁移。
事实证明,问题是迁移文件夹已从Visual Studio项目中排除。一旦我再次把它包括在内,一切都很好。
答案 2 :(得分:0)
我遇到了同样的问题,这就是我的解决方法