转换此节点的正确 xdt:Locator 参数是啥?
Posted
技术标签:
【中文标题】转换此节点的正确 xdt:Locator 参数是啥?【英文标题】:What is the right xdt:Locator parameter to transform this node?转换此节点的正确 xdt:Locator 参数是什么? 【发布时间】:2013-03-13 15:03:04 【问题描述】:我的 app.config 文件中有以下内容。我正在使用 Slow Cheetah,只想替换配置/entityFramework/defaultConnectionFactory/parameters/parameter,使其指向差异服务器。即 value-data source=some-server....
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<appSettings>
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="data source=.;Integrated Security=SSPI;Initial Catalog=SomeDb;MultipleActiveResultSets=true" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>
我在 app.config.release 中尝试过以下操作,但无济于事。
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="data source=dbserver;Integrated Security=SSPI;Initial Catalog=someDb;MultipleActiveResultSets=true"
xdt:Transform="Replace"
xdt:Locator="XPath(configuration/entityFramework/defaultConnectionFactory/parameters/parameter)" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
也试过xdt:Locator="Match(parameter)"
和xdt:Locator="XPath(parameter)
还有更多,但无法正常工作。
【问题讨论】:
【参考方案1】:好的。我觉得有点傻,但解决方案是我不需要指定 xdt:Locator。
如果我像这样离开 App.Release.Config 它将替换匹配的条目。
<parameter value="data source=dbserver;Integrated Security=SSPI;Initial Catalog=someDb;MultipleActiveResultSets=true"
xdt:Transform="Replace"/>
</parameters>
【讨论】:
别傻了,文档一点都不清楚!感谢您发布您的发现。 我遇到了同样的问题以上是关于转换此节点的正确 xdt:Locator 参数是啥?的主要内容,如果未能解决你的问题,请参考以下文章