I'm working on a .Net 4.5 web application project which has multiple DAL projects to interact with several back-end systems. Our DAL projects maintain connection strings in the project settings. We do not manage them through the web.config. We recently added a new DAL using EF5. It appears that EF 5 required a connection string reside in the web.config in addition to the DAL project's app.config. We would prefer this connection string reside in the DAL project alone for consistency.
Any suggestions on how to accomplish this?
My issue is similar to the following post: Entity Framework - layered design - Where to put connectionstring?
Thanks for any feedback.