使用EF Code First搭建簡易ASP.NET MVC網站並允許數據庫遷移

本篇使用EF Code First搭建一個簡易ASP.NET MVC 4網站,並允許數據庫遷移。

創建一個ASP.NET MVC 4 網站。

在Models文件夾內創建Person類。

    public class Person
    {
        public int ID { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
    }

在Controls文件夾內創建PersonController,選擇使用Entity Framework的模版、模型類,創建數據上下文類,如下:

點擊"添加"後,除瞭在Controls文件夾內多瞭PersonController,在Models文件夾中多瞭PersonContext類,如下:

using System.Data.Entity;
namespace MvcApplication1.Models
{
    public class PersonContext : DbContext
    {
        // 您可以向此文件中添加自定義代碼。更改不會被覆蓋。
        // 
        // 如果您希望隻要更改模型架構,Entity Framework
        // 就會自動刪除並重新生成數據庫,則將以下
        // 代碼添加到 Global.asax 文件中的 Application_Start 方法。
        // 註意: 這將在每次更改模型時銷毀並重新創建數據庫。
        // 
        // System.Data.Entity.Database.SetInitializer(new System.Data.Entity.DropCreateDatabaseIfModelChanges<MvcApplication1.Models.PersonContext>());
        public PersonContext() : base("name=PersonContext")
        {
        }
        public DbSet<Person> People { get; set; }
    }
}

在Web.config中的connectionStrings多瞭如下配置,選擇瞭默認的localdb數據庫。

  <connectionStrings>
    ......
    <add name="PersonContext" connectionString="Data Source=(localdb)\v11.0; Initial Catalog=PersonContext-20150210155119; Integrated Security=True; MultipleActiveResultSets=True; AttachDbFilename=|DataDirectory|PersonContext-20150210155119.mdf"
      providerName="System.Data.SqlClient" />
  </connectionStrings>

在Views/文件夾中多瞭Create.cshtml, Delete.cshtml, Details.cshtml, Edit.cshtml, Index.cshtml這個幾個視圖文件。

現在,我們想啟動EF的自動遷移功能。點擊"工具"-"庫程序包管理器"-"程序包管理器控制臺",輸入enable-migrations:

在根目錄下多瞭一個Migrations文件夾,以及生成瞭一個Configuration類,如下:

namespace MvcApplication1.Migrations
{
    using System;
    using System.Data.Entity;
    using System.Data.Entity.Migrations;
    using System.Linq;
    internal sealed class Configuration : DbMigrationsConfiguration<MvcApplication1.Models.PersonContext>
    {
        public Configuration()
        {
            AutomaticMigrationsEnabled = false;
        }
        protected override void Seed(MvcApplication1.Models.PersonContext 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" }
            //    );
            //
        }
    }
}

以上,我們可以添加一些種子數據。

現在需要把種子數據遷移到數據庫,在"程序包管理器控制臺",輸入add-migration initial

此時,在Migrations文件夾內多瞭201502100756322_initial類,記錄瞭本次遷移的動作。

namespace MvcApplication1.Migrations
{
    using System;
    using System.Data.Entity.Migrations;
    
    public partial class initial : DbMigration
    {
        public override void Up()
        {
            CreateTable(
                "dbo.People",
                c => new
                    {
                        ID = c.Int(nullable: false, identity: true),
                        FirstName = c.String(),
                        LastName = c.String(),
                    })
                .PrimaryKey(t => t.ID);
            
        }
        
        public override void Down()
        {
            DropTable("dbo.People");
        }
    }
}

最後別忘瞭要更新數據庫,在"程序包管理器控制臺",輸入update-database:

這時候,瀏覽/Person/Index,能實現所有的增刪改功能。

如果這時候,我們希望在Person中增加一個屬性,比如類型為int的Age屬性。

    public class Person
    {
        public int ID { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public int Age { get; set; }
    }

我們如何告訴數據庫呢?

還是在"程序包管理器控制臺",輸入add-migration 名稱

此時,在Migrations文件夾內多瞭201502100812315_addedage類,記錄瞭本次遷移的動作。

最後,還在"程序包管理器控制臺",輸入update-database以更新數據庫。

為瞭讓視圖與當前Person類同步,可以先後刪除Person文件夾和PersonController控制器,再重新創建PersonController控制器,選擇使用Entity Framework的模版、Person類,PersonContext上下文類。

至此,簡單體驗瞭EF Code First創建數據庫並實現數據庫遷移的方便之處。

以上就是這篇文章的全部內容瞭,希望本文的內容對大傢的學習或者工作具有一定的參考學習價值,謝謝大傢對WalkonNet的支持。如果你想瞭解更多相關內容請查看下面相關鏈接

推薦閱讀: