How can <connectionStrings> in Web.config be changed without restarting registered user sessions?
I would like to continue to use <connectionStrings> instead of creating a custom section, because I use LINQ, and I do not want to hack my DBML.
I know that session reset can be avoided by using custom sections placed in a separate file with the parameter restartOnExternalChanges = false in the section definition. I know that <connectionStrings> can be placed in a separate file, but I can not set restartOnExternalChanges = false because its section is defined in Machine.config and cannot be redefined in Web.config (at least I did not understand how to do it).
Keith source
share