从代码中使用EntityFramework重构数据库

本文关键字:EntityFramework 重构 数据库 代码 | 更新日期: 2023-09-27 17:59:13

我正在调整MVCMusicStore购物车。我希望使用EntityFramework重构数据库,而不是通过服务器资源管理器。

在我的模型文件夹中,我创建了一个新的FooEntities模型。

public class FooStoreEntities : DbContext
{
    public DbSet<Foo> Foos { get; set; }
    public DbSet<Category> Categories { get; set; }
    public DbSet<FooMaker> FooMakers { get; set; }
    public DbSet<Cart> Carts { get; set; }
    public DbSet<Order> Orders { get; set; }
    public DbSet<OrderDetail> OrderDetails { get; set; }
}

我还创建了额外的模型FooFooMakerCategory。MVCMusicStore示例中已经存在其他模型。

我创建了一个SampleFooData类,它继承了DropCreateDatabaseIfModelChanges<FooStoreEntities>并重写了seed方法来为新表播种。

我将Global.asax.cs中的Application_Start方法更改为包含System.Data.Entity.Database.SetInitializer(new FooStore.Models.SampleFooData());

web.config文件中,我有:

<connectionStrings>
    <add name="FooStoreEntities"
    connectionString="Data Source=|DataDirectory|FooStore.sdf"
    providerName="System.Data.SqlServerCe.4.0"/>
</connectionStrings>

其中FooStore.sdf仍然包含MVCMusicStore应用程序中的所有旧表。

当我执行web应用程序时,它会碰到SetInitializer断点,但它似乎不会创建SampleFooData对象并在数据库中创建新表。我错过了什么?或者有什么根本的东西我不明白?

从代码中使用EntityFramework重构数据库

只有在使用DB上下文时才会创建它:请参阅Entity Framework Database.SetInitializer根本无法工作

你可以放

var ctx = new FooStoreEntities();
ctx.Database.Initialize(true);

在Application_Start中设置初始值设定项的位置之后。