Delete .mdf file from app_data causes exception cannot attach the file as database

前端 未结 6 1101
我寻月下人不归
我寻月下人不归 2020-12-07 11:20

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 th

6条回答
  •  暖寄归人
    2020-12-07 12:23

    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
    

提交回复
热议问题