65.9K
CodeProject is changing. Read more.
Home

How to stop creating the aspnetdb.mdf database

emptyStarIconemptyStarIconemptyStarIconemptyStarIconemptyStarIcon

0/5 (0 vote)

Oct 11, 2013

CPOL
viewsIcon

12555

If you use the asp.net membership providers, having visual studio keep this sql database file around for deployment can sometimes be convenient.

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.

close