Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've written an ASP.Net MVC 3 application using the Code First paradigm whereby when I make a change to the model the Entity Framework automatically attempts to re-create the underlying SQL Server Database via DROP and CREATE statements. The problem is the application is hosted on a 3rd party remote server which limits the number of databases I can have and does not seem to allow me to programmatically execute "CREATE DATABASE..." statements as I gather from this error message:

CREATE DATABASE permission denied in database 'master'.

Is there any way to stop the Entity Framework from dropping and attempting to re-create the whole database and instead make it simply drop the tables and re-create them?

After creating the database manually and running the application I also get the following error I guess as the Entity Framework tries to modify the database:

Model compatibility cannot be checked because the database does not contain model metadata. Ensure that IncludeMetadataConvention has been added to the DbModelBuilder conventions.

share|improve this question
What does this problem have to do with ASP.NET? – John Saunders May 25 '11 at 23:35
@John Saunders: I included ASP.Net in the question as I'm using it to develop the web app together with EF Code First. I agree with your edit in that to be more precise the issue is with EF Code First database initialization. – NSDigital May 26 '11 at 0:06

2 Answers

up vote 10 down vote accepted

UPDATE: Found this gem through google, it sounds like its exactly what you need: http://nuget.org/Tags/IDatabaseInitializer

You can use a different database initializer. Lets say your context is called SampleContext then your constructor would look like this:

    public SampleContext() 
    {
        System.Data.Entity.Database.SetInitializer(new CreateDatabaseIfNotExists<SampleContext>()); 
    }

Note that the above is the default initializer. You will probably need to create your own custom initializer by implementing IDatabaseInitializer. Theres some good info here: http://sankarsan.wordpress.com/2010/10/14/entity-framework-ctp-4-0-database-initialization/

share|improve this answer
Using the package (Devtalk.EF.CodeFirst.CreateTablesOnly) from the link in your update note has solved the problem! Darko you are awesome! Thank you so much! – NSDigital May 25 '11 at 23:55
No probs, happy to help – Darko Z May 26 '11 at 1:56
I have since found the following post which is very helpful on the topic of custom database initialization with EF: link – NSDigital Jun 2 '11 at 2:55
Note that this still drops all the tables each time though, so be careful here... – Ralph Lavelle Sep 20 '11 at 11:34

Using EF 4.3 with Migrations you do not get this behavior - at least I have not seen it. But I also have this set in my code -

public sealed class DbConfiguration : DbMigrationsConfiguration<DatabaseContext>
{
    public DbConfiguration()
    {
        AutomaticMigrationsEnabled = false;
    }
}
share|improve this answer
Thanks @ferventcoder. I don't think I had EF 4.3 Migrations available when I did my project. Sounds like it's a good step forward. – NSDigital Mar 8 '12 at 1:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.