I am trying to develop a web application using MVC3 architecture.
I have DAL library for all database related operations and my web application is a separate application.
Now, if I update my .edmx file by drag and drop in DAL library, the app.config file of that library gets updated.
And this is fine when I am developing, but while deploying, I do not want my application to use connectionstring from app.config file, but instead from web.config file from my web application.
Can anybody give me an idea how to achieve this?
Thank you.