转换此节点的正确 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>

【讨论】:

别傻了,文档一点都不清楚!感谢您发布您的发现。 我遇到了同样的问题 。那个没有用于匹配的名称,所以我只是使用了您的替换方法。 @TobyJ - 文档可能不清楚,但是当您考虑它时,定位器有助于调整默认位置匹配。如果您不提供任何内容,则将使用元素的层次结构。 (如果不是,您必须在沿链的变换中的每个祖先元素处提供 xdt:Locator)

以上是关于转换此节点的正确 xdt:Locator 参数是啥?的主要内容,如果未能解决你的问题,请参考以下文章

如何将节点 js 中的错误对象正确转换为字符串?

将新节点添加到 Clickhouse 集群的正确方法是啥?

为包含多个集合作为子节点的 TreeView 节点构建数据模板的正确方法是啥?

为对象指针实现复制构造函数和运算符的正确方法是啥

将节点模块导入角度打字稿/角度cli的正确方法是啥

在 Hortonworks 中安装服务的正确方法是啥?