6

私のXmlファイル:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfCustomer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Customer>
        <CustomerId>1f323c97-2015-4a3d-9956-a93115c272ea</CustomerId>
        <FirstName>Aria</FirstName>
        <LastName>Stark</LastName>
        <DOB>1999-01-01T00:00:00</DOB>
    </Customer>
    <Customer>
        <CustomerId>c9c326c2-1e27-440b-9b25-c79b1d9c80ed</CustomerId>
        <FirstName>John</FirstName>
        <LastName>Snow</LastName>
        <DOB>1983-01-01T00:00:00</DOB>
    </Customer>
</ArrayOfCustomer>  

私の試み:

XElement toEdit = 
    (XElement)doc.Descendants("ArrayOfCustomer")
                 .Descendants("Customer")
                 .Where(x => Guid.Parse((x.Descendants("CustomerId") as XElement).Value) == customer.CustomerId)
                 .First<XElement>();

これにより、次の例外がスローされます。

 Object reference not set to an instance of an object.

1) ではありませんxXElement?

2)これはXmlノードを選択するための適切なラムダですか?

3) そしてもちろん、どのようにしてこのノードを見つけますCustomerIdか?

4

4 に答える 4

4

あなたの問題はそれでDescendentsあり、あなたが求めているものではないシングルをWhere返します。これは次のように修正できます。IEnumerable<XElement>XElement

XElement toEdit = doc.Descendants("ArrayOfCustomer")
                     .Descendants("Customer")
                     .Where(x => Guid.Parse(x.Descendants("CustomerId").Single().Value) == customer.CustomerId)
                     .FirstOrDefault();
于 2012-04-10T03:55:54.313 に答える
2

あなたはキャストしていません。xあなたはキャストしていますx.Descendants()。x.Descendants() はコレクションを返すため、複数形のメソッド セマンティックです。私の頭の上からあなたができるはずですx.Descendants("CustomerId").FirstOrDefault() as XElement

于 2012-04-10T03:54:37.533 に答える
1

クエリを次のように再構成します。

 XElement toEdit = doc.Descendants("Customer")
                      .Where(x => (Guid)x.Element("CustomerId") == customer.CustomerId)
                      .FirstOrDefault();
于 2012-04-10T04:00:32.353 に答える
1
XElement toEdit = (from c in doc.Descendants("Customer")
     where Guid.Parse(c.Value) == customer.CustomerId
     select c).SingleOrDefault();
于 2012-04-10T03:57:17.620 に答える