Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Entity Framework designer file (edmx) which has a connection string pointing to my web.config. That works fine.

If I change the connection string I see the changes when the web site is running, but changing the connection string and updating my edmx designer results in using the originally specified connection string.

Upon further investigation, viewing the designer properties shows that it is using a connection string from my web.config, but doesn't reflect any values I've changed in the web.config.

share|improve this question

2 Answers

up vote 0 down vote accepted

I found that one of the existing connection strings in the web.config was caused this issue. Very strange. It happened to be a connection string that wasn't in use anymore so removing it fixed the problem.

share|improve this answer

Can you please let me know the way to point web.config connectionstring from an .edmx file?

share|improve this answer
When you setup your edmx file you specify a named connection string that gets stored in the web.config. You might be able to change what connection string it uses by right clicking on the designer surface and choosing properties. – Nick Aug 20 '12 at 9:56
Hi Nick, Thank you for response. But my question was something else I think.I will add another post for this. – Suhani Mody Aug 21 '12 at 4:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.