Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
482 views
in Technique[技术] by (71.8m points)

asp.net mvc - Delete .mdf file from app_data causes exception cannot attach the file as database

I am building a web application using VS 2012 MVC4 code first. In order to recreate the .mdf file after I changed the model, I manually deleted the file from the app_data directory in VS. I have done this a few times before without any problem.

Now I receive an exception:

The underlying provider failed on Open. ==> Cannot attach the file MYDB.mdf as database 'MYDB'.

I will appreciate your help on how to recreate the .mdf file.

Thank you!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

That what fixed it for me, From Package Manager Console run these commands:

  sqllocaldb.exe stop v11.0
  sqllocaldb.exe delete v11.0

And then:

  Update-Database

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...