Skip to main content

EF CodeFirst Database.SetInitializser Requires Connection to 'master' Database Error

One of the features of EF CodeFirst is the ability to automatically drop and recreate a database if the model changes or if the database does not exist, which is pretty useful when just doing development work.

In a web app this is done in the Global.asax file within "protected void Application_Start()" as per this post from Scott Guthrie - http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx. An example would be:

protected void Application_Start()
{
    Database.SetInitializer<yourdbcontex>(new DropCreateDatabaseIfModelChanges<yourdbcontext>());

    AreaRegistration.RegisterAllAreas();

    RegisterGlobalFilters(GlobalFilters.Filters);
    RegisterRoutes(RouteTable.Routes);
}

However when using the Database.SetInitializer and trying to rebuild the database, the following exception may be encountered, especially if using SQL Server Express:
"This operation requires a connection to the 'master' database. Unable to create a connection to the 'master' database because the original database connection has been opened and credentials have been removed from the connection string. Supply an unopened connection."
The application is trying to access the master database to read the structure of the database used by the application, but the connection string used will not allow it.

Getting around this 'master' database exception is fairly straightforward - add the Persist Security Info property to the connection string and set the value to true.

e.g.

Server=YourServerName\SQLEXPRESS;Database=yourDatabase;User ID=yourDBUser;Password=yourDBPassword;Trusted_Connection=False;Persist Security Info=True

Credit: Thanks to Kevin McLean from http://www.northgatesystems.co.uk/ for pointing this fix out in the comments on the blog post mentioned above.

Addendum 05/04/2011
Persist Security Info=True should not be set in a production environment. As the above is really only a "fix/hack" with a view to the development phase or getting going with EF Code First, and taking advantage of EF CodeFirst dropping and rebuilding the database. In a production environment Persist Security Info should be set to FALSE.

From MSDN Security Guidelines (http://msdn.microsoft.com/en-us/library/ff647552.aspx)

If you must supply a user ID and password when making a connection, you should make sure that this information is discarded after it is used to open the connection. This occurs when Persist Security Info is set to "false" or "no". 
Setting the Persist Security Info keyword to "true" or "yes" in a connection string allows security-sensitive information, including the user ID and password; to be obtained from the connection after the connection has been opened. 
Keeping Persist Security Info as "false" helps to make sure that the untrusted source does not have access to the security-sensitive information for your connection and also helps to make sure that no security-sensitive information is saved to disk with your connection string information. Persist Security Info is set to "false" by default.

Comments

  1. Thank you sir..just ran into this.

    ReplyDelete
  2. Yep, Cheers for the heads up. Connection management in Ef 4.1 is a PITA.

    ReplyDelete
  3. Any idea why this happens when using SQL CE4?

    ReplyDelete
  4. Hi Shawn,

    EF Code First uses the master database to determine if the database for your model exists.

    This is a basic version and as far as I understand it:

    The check of the state of the database compared to the model, happens when a call to the database is made (e.g. SELECT, INSERT, etc).

    So the query is built and executed, THEN a check to see if the database needs to be updated if the model has changed. This check includes querying the master database.

    As the query has already been made for the data, the same connection can not be used to make a second query about the state of the model.

    Therefore either the database needs to be checked and initialised if necessary, beforehand using another methodolgy, or the security information needs to be persisted for all queries within an open connection.

    Hope that waffle makes some sense and helps explain a little bit!

    ReplyDelete

Post a Comment

Popular posts from this blog

Entity Framework Code-First Learning Resources

Some resources to help learn and understand Microsoft's Entity Framework Code-First ORM. Basic Tutorial http://www.asp.net/mvc/tutorials/getting-started-with-mvc3-part1-cs Advanced Tutorial http://www.asp.net/mvc/tutorials/mvc-music-store-part-1 Blog posts with further hints and tips http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx Update to NerdDinner using EF Code-First. Also shows how to synchronise database with the model and seeding database with initial data. http://www.hanselman.com/blog/SimpleCodeFirstWithEntityFramework4MagicUnicornFeatureCTP4.aspx Some useful info demonstrating Data Annotations such as [Key] and [Required]. This post will be added to as time goes by. If there are any other good resources about this MS framework feel free to throw them in to a comment. Updates EF Feature CTP5: Code First Walkthrough http://blogs.msdn.com/b/adonet/archive/2010/12/06/ef-feature-ctp5-code-first-walkthrou

Which blog engine?

So the time has come to move to a more advanced blog engine for my blog. blogger.com , Google's blogging service, has served me well. It's incredibly easy to use and to get started with, along with having some great features such as inbuilt stats; however now I need a few more advanced features and greater control over the blog. There's a vast array of blog engines out there, some free, some paid for, some hosted, some self-hosted, and picking which one is best or the right choice could be a little bit tricky. This article from Mashable lists most of the main options and bigger players -  http://mashable.com/2007/08/06/free-blog-hosts/ . There are a few parameters that I've kind of decided on Ease of installation/compatibility and support with web hosts Simple to use. I don't want to spend ages clicking around just to add a post or format it. Feature rich and well supported. Most blog engines should have a fairly standard set of features now such RSS/ATOM fe

Enable .NET 8 Preview in Visual Studio

Download the SDK using Download .NET 8.0 (Linux, macOS, and Windows) (microsoft.com)  and install it. To enable projects to target the .NET 8 preview framework, the preview option in Visual Studio needs to be enabled, otherwise the option to target .NET 8 will not be available as shown below when setting up a new project (or trying to upgrade an existing one). To allow .NET 8 Preview to be used as a target framework for projects, the preview option needs to be enabled in Visual Studio. Open Visual Studio and select "Continue without code" In Visual Studio, select Tools then Options In Options, under Environment, select Preview Features and enable Use previews of the .NET SDK.