다음과 같이는 SQL 서버 LocalDB 문제 본인은 db_name.mdf 파일을 열하려고 할 때마다 다음과 같은 오류가 무엇입니까
The database '{path}\db_name.MDF' cannot be opened because it is version 706. This server supports version 662 and earlier. A downgrade path is not supported. Could not open new database 'db_name.MDF'. CREATE DATABASE is aborted. An attempt to attach an auto-named database for file {$path}\db_name.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.
연결 문자열을 :
<add name="PasswordDBContext" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\db_name.mdf;Integrated Security=True" providerName="System.Data.SqlClient" />
나는 비주얼 스튜디오 내에서 asp.net MVC 4 프로젝트를 작업 중이다.
문제를 해결하는 데 도움이되는 모든 도움을 주실 수 있습니다. 감사.
감사합니다. 그럼 MDF를 다운 그레이드해야한다고 생각합니까? 작동할까요? – Rana