0

我需要为当前的 xml 提供包装器,从中获取 keyvalye 对值。这是我当前的代码:

string SID_Environment = "SID_" + EnvironmentID.ToString();
XDocument XDoc = XDocument.Load(FilePath_EXPRESS_API_SearchCriteria);
var Dict_SearchIDs = XDoc.Elements().ToDictionary(a => (string)a.Attribute("Name"), a => (string)a.Attribute("Value"));
string Search_ID = Dict_SearchIDs.Where(IDAttribute => IDAttribute.Key == SID_Environment).Select(IDAttribute => IDAttribute.Value).FirstOrDefault();
Console.WriteLine(Search_ID);

这是我的示例 xml,如下所示:

<APIParameters>
     <Parameter Name="SID_STAGE" Value="101198" Required="true"/>
     <Parameter Name="SID_QE" Value="95732" Required="true"/>
 </APIParameters>

请注意,此代码适用于示例 xml,但在使用一些包装器修改我的 xml 后,我遇到了这个问题。我需要为我的 xml 提供一些包装器来修改我的示例 xml,如下所示:

<DrWatson>
  <Sets>
    <Set>
      <APIParameters>
        <Parameter Name="SID_STAGE" Value="101198" Required="true"/>
        <Parameter Name="SID_QE" Value="95732" Required="true"/>
      </APIParameters>
    </Set>
  </Sets>
</DrWatson>

但是当我这样做并运行我的代码时,它会抛出一个错误。请建议。

4

2 回答 2

1

XDoc.Elements() 只返回直接子元素,使用 Descendants 代替。

var parameterElements = xDoc.Descendants("Parameter");
parameterElements.ToDictionary(a => (string)a.Attribute("Name"), 
                               a => (string)a.Attribute("Value"));
于 2013-09-18T09:35:23.020 回答
0

你需要类似的东西:

var apiParams = doc.Descendants("APIParameters");

然后你可以修改你的代码:

var Dict_SearchIDs = apiParams.Elements().ToDictionary(a => (string)a.Attribute("Name"), a => (string)a.Attribute("Value"));
于 2013-09-18T09:42:35.040 回答