亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • 怎么使用EF?Code?First搭建簡易ASP.NET?MVC網站并允許數據庫遷移

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

發布時間:2022-09-14 09:46:03 來源:億速云 閱讀:142 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“怎么使用EF Code First搭建簡易ASP.NET MVC網站并允許數據庫遷移”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么使用EF Code First搭建簡易ASP.NET MVC網站并允許數據庫遷移”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

創建一個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的模版、模型類,創建數據上下文類,如下:

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

點擊"添加"后,除了在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:

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

在根目錄下多了一個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

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

此時,在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:

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

這時候,瀏覽/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 名稱

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

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

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

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

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

讀到這里,這篇“怎么使用EF Code First搭建簡易ASP.NET MVC網站并允許數據庫遷移”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永善县| 岳西县| 三原县| 伊宁市| 昌平区| 新河县| 罗田县| 平泉县| 桃江县| 霸州市| 沙洋县| 中宁县| 鄂尔多斯市| 错那县| 舟山市| 天门市| 巫溪县| 泽库县| 康保县| 沈阳市| 新乡市| 会同县| 广水市| 井冈山市| 祁阳县| 木兰县| 武安市| 锦州市| 巴青县| 天全县| 金川县| 荆州市| 湘潭县| 凉山| 志丹县| 张家界市| 杭州市| 昂仁县| 太仓市| 顺平县| 盈江县|