Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entity Framework Not Creating Database

Been playing around with the Code First feature of Entity Framework 4.1 using an ASP.NET MVC 3 project.

However the database (SQL Server 2008 R2) does not automatically create the table mapping on application startup. Any ideas on how to make it do so?

The project has only one POCO:

namespace RIS.Models {     public class Person     {         [Key]         public virtual string NRIC { get; protected set; }         public virtual string FirstName { get; protected set; }         public virtual string MiddleName { get; protected set; }         public virtual string LastName { get; protected set; }     } } 

It also has the following database context class:

namespace RIS.Models {     public class RIS_DB : DbContext     {         public DbSet<Person> People { get; set; }     } } 

I've added a SQL connection string to the global web.config file as follows:

<add name="RIS_DB" connectionString="Data Source=URAHARA-PC;Initial Catalog=RIS_DB; Integrated Security=SSPI;Pooling=False" providerName="System.Data.SqlClient"/> 

There is also an explicit instruction to create the database if it does not exist in the Global.asax.cs file:

protected void Application_Start() {     Database.SetInitializer(new CreateDatabaseIfNotExists<RIS_DB>());      AreaRegistration.RegisterAllAreas();      RegisterGlobalFilters(GlobalFilters.Filters);     RegisterRoutes(RouteTable.Routes); } 
like image 390
mazatsushi Avatar asked Jul 04 '11 11:07

mazatsushi


People also ask

Does Entity Framework create the database?

However, with ASP.NET you can use Entity Framework to generate a database based on an object model. Generally you would create an ER diagram and manually create all the tables one by one. With Entity Framework, you can create your entities in Visual Studio and all your tables will be created for you.

What is DB set in Entity Framework?

A DbSet represents the collection of all entities in the context, or that can be queried from the database, of a given type. DbSet objects are created from a DbContext using the DbContext. Set method.


2 Answers

Asked around on the MSDN forums instead, and got a satisfactory answer:

Entity Framework will not create a database until first access. The current code block in Application_Start() only specifies the strategy to use when creating the database during first access.

To trigger creation of the database on startup, an instance of the database context must be created, and context.Database.Initialize(true) must be invoked.

like image 60
mazatsushi Avatar answered Oct 20 '22 13:10

mazatsushi


I have the same issue and found a elegant solution: call the SetInitializer in the constructor of your DbContext:

public class MyDbContext : DbContext {    protected MyDbContext : this("MyConnection")    {        Database.SetInitializer<MyDbContext>(new CreateDatabaseIfNotExists<MyDbContext>());    } } 

My app setting:

<connectionStrings>     <add       name="MyConnection"       connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\MyDB.mdf;Initial Catalog=MyDB;Integrated Security=True"       providerName="System.Data.SqlClient" />   </connectionStrings> 
like image 26
Maksood Avatar answered Oct 20 '22 14:10

Maksood