我在 web.config 的标准 connectionStrings 元素中有一组连接字符串
web.config 中的 sessionState 元素规定在使用 sql 会话状态时使用 sqlConnectionString 属性。
这通常会导致连接字符串在文件中的 2 个位置重复,如果有人忘记更改这两个位置,可能会导致它们不同步。
我可以使用什么机制来删除这种重复?
示例配置:
<connectionStrings>
<add name="IWouldLikeToUseThisConnectionStringForSessionState" value="..."
</connectionStrings>
<sessionState
mode="SQLServer"
allowCustomSqlDatabase="true"
sqlConnectionString="DuplicatedConnectionStringHereAndCanGetOutOfSync"
/>