0

我有一段 xml 作为 Web 服务的响应。

 <Production>
    <creator>...</creator>
    <creator.date_of_birth/>
    <creator.date_of_death/>
    <creator.history/>
    <creator.lref>426</creator.lref>
    <creator.qualifier/>
    <creator.role/>
    <creator.role.lref/>
    <production.notes/>
    <production.place>France</production.place>
    <production.place.lref>30</production.place.lref>
  </Production>
  <production.period>19th century</production.period>
  <production.period.lref>13</production.period.lref>
  <Production_date>
    <production.date.end>1863</production.date.end>
    <production.date.end.prec>circa.</production.date.end.prec>
    <production.date.start>1863</production.date.start>
    <production.date.start.prec>dated</production.date.start.prec>
  </Production_date>

下面是我获取值的 LINQ 代码:

allrecs = (from XElement c in recordSet.Descendants("recordList")
                where c.HasElements
                from x in c.Elements("record")
                select new CollectionRecord()
                {
                  production_place =  x.Element("Production").Element("production.place").Value,
                  production_period =  x.Element("production.period").Value,
                  production_start_date = x.Element("Production_date").Element("production.date.start").Value,
                  production_end_date = x.Element("Production_date").Element("production.date.end").Value,
                }).ToList <CollectionRecord>();

我发现的问题是 - 我无法获得“production.date.start”和“production.date.end”的值,但上面的代码适用于“production.period”。xml 结构和这些元素中的数据没有任何问题。根据我的理解,它不适用于任何类似 - “abc”的元素,但它适用于 - “ab”,因为我已经检查过其他类似元素并且它不起作用!

4

1 回答 1

1

为我工作(我保持你的 Xlinq 代码相同 - 只是换成了匿名类型new):

[TestMethod]
public void TestMethod1()
{
  XElement x = XElement.Parse(@"<record><Production> 
<creator>...</creator> 
<creator.date_of_birth/> 
<creator.date_of_death/> 
<creator.history/> 
<creator.lref>426</creator.lref> 
<creator.qualifier/> 
<creator.role/> 
<creator.role.lref/> 
<production.notes/> 
<production.place>France</production.place> 
<production.place.lref>30</production.place.lref> 
</Production> 
<production.period>19th century</production.period> 
<production.period.lref>13</production.period.lref> 
<Production_date> 
<production.date.end>1863</production.date.end> 
<production.date.end.prec>circa.</production.date.end.prec> 
<production.date.start>1863</production.date.start> 
<production.date.start.prec>dated</production.date.start.prec> 
</Production_date></record>");
  var rec = new 
              {
                production_place = x.Element("Production").Element("production.place").Value,
                production_period = x.Element("production.period").Value,
                production_start_date = x.Element("Production_date").Element("production.date.start").Value,
                production_end_date = x.Element("Production_date").Element("production.date.end").Value,
              };
  Assert.AreEqual("France", rec.production_place);
  Assert.AreEqual("19th century", rec.production_period);
  Assert.AreEqual("1863", rec.production_start_date);
  Assert.AreEqual("1863", rec.production_end_date);
}

我想知道您的CollectionRecord班级是否正在使用属性以及您set是否为这两个违规值正确编写了方法?

(更新)由于您的 get/sets 是“标准的”,因此它可能很简单,就像某处将这些属性物理设置为 null 某处的一段代码一样简单。

于 2012-06-12T12:26:27.480 回答