Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

How to stop creating the aspnetdb.mdf database

0.00/5 (No votes)
20 Jan 2012 1  
If you use the asp.net membership providers, having visual studio keep this sql database file around for deployment can sometimes be convenient.

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

If you use the asp.net membership providers, having visual studio keep this sql database file around for deployment can sometimes be convenient. However, what if you want to use your own production database specified in the web config for the membership tables and don't want this database to be created everytime you deploy to production? There is a solution to this problem. You simply disable this in the machine.config of your framework version. Here is how to turn this off.

  1. Browse using windows explorer to c:\windows\microsoft.net\framework\your dot net version\config
  2. Open the machine.config file in visual studio or notepad
  3. Scroll down until you get to a line for connectionstrings
  4. Comment out this line
    1. <add name="LocalSqlServer" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" />
  5. Build your application

Once you delete the aspnetdb.mdf file and rebuild, it shouldn't come back again.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here