0

我在 web.config 的标准 connectionStrings 元素中有一组连接字符串

web.config 中的 sessionState 元素规定在使用 sql 会话状态时使用 sqlConnectionString 属性。

这通常会导致连接字符串在文件中的 2 个位置重复,如果有人忘记更改这两个位置,可能会导致它们不同步。

我可以使用什么机制来删除这种重复?

示例配置:

<connectionStrings>
    <add name="IWouldLikeToUseThisConnectionStringForSessionState" value="..."
</connectionStrings>

<sessionState 
    mode="SQLServer" 
    allowCustomSqlDatabase="true"
    sqlConnectionString="DuplicatedConnectionStringHereAndCanGetOutOfSync"
    />
4

1 回答 1

1

处理此问题的一种方法可能是使用分区,如此所述。

于 2013-01-09T06:14:48.537 回答