我可以看到该Web.config
文件包含两个文件:
-web.Debug.config
-web.Release.config
在此配置文件中有以下注释:
在下面的示例中,只有当“Match”定位器找到值为“MyDB”的属性“name”时,“SetAttributes”转换才会将“connectionString”的值更改为使用“ReleaseSQLServer”。
<connectionStrings>
<add name="MyDB"
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>
是什么"Match" locator
?我已经有一个连接字符串Web.config
那么我该如何设置呢?主 web.config 文件应该包含生产连接字符串还是相反?我正在寻找做过类似事情的人的建议