无法将文件 *.mdf 作为数据库附加到 asp.net

Cannot attach the file *.mdf as database in asp.net

我正在尝试将 *.mdf 文件附加到 SQL Server Express 版本。但是我仍然遇到附加问题,然后我删除了一个数据库并在我在程序包管理器控制台中使用 Update-Database 时创建了一个新的但同样的问题。

我的默认连接字符串是:

"DefaultConnection": "Server=(localdb)\mssqllocaldb;AttachDBFilename=App_Data\TVK3.mdf;Database=TVK3;Trusted_Connection=true;MultipleActiveResultSets=true;"

我收到这个错误:

Cannot attach the file 'App_Data\TVK3.mdf' as database 'TVK3'.

我在 google 上搜索并尝试了一些建议,但没有任何帮助。感谢您的任何建议。

删除: "AttachDBFilename=App_Data\TVK3.mdf;"

正如 davidbaumann 在我的评论下方所说的那样。当我使用绝对文件名时,一切正常。谢谢。