使用EntityFramework从代码重构数据库

时间:2011-06-16 11:26:54

标签: c# entity-framework asp.net-mvc-3

我正在调整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的{​​{1}}类,并覆盖了DropCreateDatabaseIfModelChanges<FooStoreEntities>方法以为新表提供种子。

我更改了seed中的Application_Start方法以包含Global.asax.cs

在我的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> 仍然包含MVCMusicStore应用程序中的所有旧表。

当我执行Web应用程序时,它会点击FooStore.sdf断点,但它似乎不会创建SetInitializer对象并在数据库中创建新表。我错过了什么?或者有什么根本我不明白?

1 个答案:

答案 0 :(得分:2)

只有在使用数据库上下文时才会创建它:请参阅Entity Framework Database.SetInitializer simply not working

你可以把

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

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