如何在C#.NET项目中运行迁移?

时间:2017-03-08 21:58:23

标签: c# .net visual-studio c#-4.0

我有与SQL服务器一起使用的项目。在Models目录中,我有像以下一样的迁移文件:

public partial class UserData : DbMigration
    {
        public override void Up()
        {
            CreateTable(
                "dbo.confirmation_code",
                c => new
                    {
                        sys_id = c.Long(nullable: false, identity: true),
                        resource_id = c.Guid(nullable: false),
                        code = c.String(maxLength: 64),
                        user_id = c.Long(nullable: false),
                        id = c.Guid(nullable: false),
                        edit_date = c.DateTime(nullable: false),
                    })
                .PrimaryKey(t => t.sys_id)
                .ForeignKey("dbo.user", t => t.user_id, cascadeDelete: true)
                .Index(t => t.user_id);
....

对于开发,我使用VisualStudio,如何运行所有迁移以进行部署?

1 个答案:

答案 0 :(得分:3)

您应该打开Nuget管理控制台并使用迁移名称键入update-database命令,并在需要时输入其他参数。根据您的设置,您可能需要提供连接字符串名称和/或项目所在的位置。

更多相关信息:Entity Framework Code First Migrations