While working on an ASP.NET MVC application I encountered the following error. It clearly says that some connection string is missing in the configuration file.

Well I have refactored the application following the onion architecture and there is nothing related to database exist in the MVC project. Project structure looks like follows:

The Entity Framework is part of the infrastructure project and in its App.Config file, there is an entry of connection string as follows:

Even though connection is present in the project which is dealing with the database, error is thrown. The reason behind this is, the MVC project is a startup project and the infrastructure project is not a startup project. We need to have connection string in the configuration file of the startup project. In this case startup project is MVC project, so to solve this error we need to copy IndiaMP connection string to Web.config of MVC project. After doing that you should not get the above error.
Solution: Copy connection string to configuration file of startup project.
Happy Coding
解决ASP.NET MVC中缺失连接字符串错误
本文解决了一个常见的ASP.NET MVC应用错误,即在配置文件中找不到指定的连接字符串。通过分析项目结构和Onion架构,指出实体框架位于基础设施项目中,而MVC项目作为启动项目未包含连接字符串。解决方案是在MVC项目的Web.config中添加所需的连接字符串。
31万+

被折叠的 条评论
为什么被折叠?



