您好,登录后才能下订单哦!
这篇文章主要介绍了如何使用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的模版、模型类,创建数据上下文类,如下:
点击"添加"后,除了在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搭建ASP.NET MVC网站并允许数据库迁移”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“如何使用EF Code First搭建ASP.NET MVC网站并允许数据库迁移”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。