更改 Web.config 连接字符串而不重置会话

发布于 2024-08-07 05:31:07 字数 415 浏览 2 评论 0原文

如何在不重置登录用户会话的情况下更改 Web.config 中的内容?

我想继续使用而不是创建自定义部分,因为我使用 LINQ 并且我不想破坏我的 DBML。

我知道可以使用放置在单独文件中的自定义部分来避免会话重置,并在部分定义中添加restartOnExternalChanges = false。我知道可以放在单独的文件中,但我无法设置 restartOnExternalChanges=false 因为它的部分是在 Machine.config 中定义的,并且不能在 Web.config 中覆盖(至少,我还没弄清楚如何)。

How can <connectionStrings> in Web.config be changed without resetting sessions of logged in users?

I'd like to keep using <connectionStrings> instead of creating a custom section because I use LINQ and I don't want to have to hack my DBML.

I know that session resets can be avoided using custom sections placed in a separate file with restartOnExternalChanges=false in the section definition. I know that <connectionStrings> can be put in a separate file but I cannot set restartOnExternalChanges=false because its section is defined in Machine.config and can't be overridden in Web.config (at least, I haven't figured out how to).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

提笔书几行 2024-08-14 05:31:07

你不能。时期。

正如您所提到的,将配置设置外部化到单独的配置中可能会在大多数情况下有所帮助,因为在这种情况下,您不必修改总是导致应用程序重新启动的 web.config。

但正如您也提到的,在 的情况下,情况并非如此,据我所知,没有办法改变这种行为。

您需要找到一种方法,用您可能需要的所有连接字符串预填充您的 部分(然后在任何给定时间选择“正确的”字符串),否则您将必须自己动手。

马克

You cannot. Period.

As you mentioned, externalizing configuration settings into separate configs might help with most cases, since in that case, you wouldn't have to modify the web.config which always causes an app restart.

But as you also mention, in the case of <connectionStrings>, this is not the case, and as far as I know, there's no way to change that behavior.

You need to find a way to either prepopulate your <connectionStrings> section with all the connection strings you might need (and then just pick the "right" one at any given time), or you'll have to resort to rolling your own.

Marc

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文