I recently had to edit my app.config file to change the connection string for an Entity Framework data model (.edmx
file). But I\'d like to know: Is the
No, you can't edit the connection string in the designer. The connection string is not part of the EDMX file it is just referenced value from the configuration file and probably because of that it is just readonly in the properties window.
Modifying configuration file is common task because you sometimes wants to make change without rebuilding the application. That is the reason why configuration files exist.