使用EF Code First搭建簡易ASP.NET MVC網(wǎng)站并允許數(shù)據(jù)庫遷移
本篇使用EF Code First搭建一個簡易ASP.NET MVC 4網(wǎng)站,并允許數(shù)據(jù)庫遷移。
創(chuàng)建一個ASP.NET MVC 4 網(wǎng)站。
在Models文件夾內(nèi)創(chuàng)建Person類。
public class Person
{
public int ID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}在Controls文件夾內(nèi)創(chuàng)建PersonController,選擇使用Entity Framework的模版、模型類,創(chuàng)建數(shù)據(jù)上下文類,如下:

點(diǎn)擊"添加"后,除了在Controls文件夾內(nèi)多了PersonController,在Models文件夾中多了PersonContext類,如下:
using System.Data.Entity;
namespace MvcApplication1.Models
{
public class PersonContext : DbContext
{
// 您可以向此文件中添加自定義代碼。更改不會被覆蓋。
//
// 如果您希望只要更改模型架構(gòu),Entity Framework
// 就會自動刪除并重新生成數(shù)據(jù)庫,則將以下
// 代碼添加到 Global.asax 文件中的 Application_Start 方法。
// 注意: 這將在每次更改模型時銷毀并重新創(chuàng)建數(shù)據(jù)庫。
//
// 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多了如下配置,選擇了默認(rèn)的localdb數(shù)據(jù)庫。
<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這個幾個視圖文件。
現(xiàn)在,我們想啟動EF的自動遷移功能。點(diǎn)擊"工具"-"庫程序包管理器"-"程序包管理器控制臺",輸入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" }
// );
//
}
}
}以上,我們可以添加一些種子數(shù)據(jù)。
現(xiàn)在需要把種子數(shù)據(jù)遷移到數(shù)據(jù)庫,在"程序包管理器控制臺",輸入add-migration initial:

此時,在Migrations文件夾內(nèi)多了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");
}
}
}最后別忘了要更新數(shù)據(jù)庫,在"程序包管理器控制臺",輸入update-database:

這時候,瀏覽/Person/Index,能實(shí)現(xiàn)所有的增刪改功能。
如果這時候,我們希望在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; }
}我們?nèi)绾胃嬖V數(shù)據(jù)庫呢?
還是在"程序包管理器控制臺",輸入add-migration 名稱:

此時,在Migrations文件夾內(nèi)多了201502100812315_addedage類,記錄了本次遷移的動作。
最后,還在"程序包管理器控制臺",輸入update-database以更新數(shù)據(jù)庫。

為了讓視圖與當(dāng)前Person類同步,可以先后刪除Person文件夾和PersonController控制器,再重新創(chuàng)建PersonController控制器,選擇使用Entity Framework的模版、Person類,PersonContext上下文類。
至此,簡單體驗(yàn)了EF Code First創(chuàng)建數(shù)據(jù)庫并實(shí)現(xiàn)數(shù)據(jù)庫遷移的方便之處。
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
- ASP.NET MVC把數(shù)據(jù)庫中枚舉項(xiàng)的數(shù)字轉(zhuǎn)換成文字
- asp.net mvc CodeFirst模式數(shù)據(jù)庫遷移步驟詳解
- asp.net實(shí)現(xiàn)的MVC跨數(shù)據(jù)庫多表聯(lián)合動態(tài)條件查詢功能示例
- asp.net mvc 從數(shù)據(jù)庫中讀取圖片的實(shí)現(xiàn)代碼
- asp.net MVC 根據(jù)菜單樹類別不同動態(tài)加載視圖的實(shí)現(xiàn)步驟
- ASP.NET?MVC使用jQuery的Load方法加載靜態(tài)頁面及注意事項(xiàng)
- ASP.NET Mvc開發(fā)之EF延遲加載
- ASP.NET MVC懶加載如何逐步加載數(shù)據(jù)庫信息
相關(guān)文章
Asp .net 調(diào)用帶參數(shù)的存儲過程
本文主要介紹了Asp .net 調(diào)用帶參數(shù)的存儲過程的相關(guān)知識。具有很好的參考價值。下面跟著小編一起來看下吧2017-03-03
asp.net(c#)做一個網(wǎng)頁數(shù)據(jù)采集工具
最近做一個網(wǎng)站,該網(wǎng)站需要添加4000多 產(chǎn)品信息,如果用人工方法去別的網(wǎng)站copy那至少要花費(fèi)半月時間才能完成,所以我個辦法使用c#作出來了一個網(wǎng)頁數(shù)據(jù)采集軟件.2009-12-12
C#基礎(chǔ)之?dāng)?shù)據(jù)類型轉(zhuǎn)換
簡單認(rèn)識顯式轉(zhuǎn)換和隱式轉(zhuǎn)換 我們就從下面這段代碼段開始吧2013-02-02
.NET某消防物聯(lián)網(wǎng)后臺服務(wù)內(nèi)存泄漏分析
這篇文章主要為大家介紹了.NET某消防物聯(lián)網(wǎng)后臺服務(wù)內(nèi)存泄漏分析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-06-06
Visual Studio Debug實(shí)戰(zhàn)教程之基礎(chǔ)入門
這篇文章主要給大家介紹了關(guān)于Visual Studio Debug實(shí)戰(zhàn)教程之基礎(chǔ)入門的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-09-09

