Linq to Xml C# найти указанный элемент c внутри указанного элемента c - PullRequest
0 голосов
/ 31 марта 2020

Я пытаюсь вернуть значение степени пользователя с указанным c идентификатором, пользователь может иметь более одного кода степени

мой c# (не рабочая) ошибка: System.InvalidOperationException: «Последовательность не содержит соответствующего элемента»

 public static string checkLicense(string cardType)
        {
            string x="";
            var values = from e in XDocument.Load(@".\data\PersonData.Xml").Elements("User").Single(c => c.Attribute("idNumber").Value == Properties.Settings.Default.idNumber).Descendants("DrivingCardLicence")
                         select e.Element("Degree").Value;

            foreach (var e in values)
            {
                x += e;
            }
            return x;
}

мой XML файл:

<?xml version="1.0" encoding="utf-8"?>
<Users>
  <User idNumber="666666666">
    <IdCard>
      <FirstName>Majd</FirstName>
      <LastName>sadi</LastName>
      <FatherName>asfasf</FatherName>
      <MotherName>asf</MotherName>
      <GrandFatherName>sdfgasf</GrandFatherName>
      <Sex>זכר</Sex>
      <ImagePath></ImagePath>
      <DateOfBirth>25/06/1996 18:22:48</DateOfBirth>
      <Address>asf</Address>
    </IdCard>
  </User>
  <User idNumber="999999999">
    <IdCard>
      <FirstName>asfasf</FirstName>
      <LastName>asfasf</LastName>
      <FatherName>asfasf</FatherName>
      <MotherName>asfasf</MotherName>
      <GrandFatherName>asfasf</GrandFatherName>
      <Sex>זכר</Sex>
      <ImagePath>C:\Users\m\Desktop\pictures\me\meirl.jpg</ImagePath>
      <DateOfBirth>31/03/1996 18:27:46</DateOfBirth>
      <Address>asfdasf</Address>
    </IdCard>
    <DrivingCardLicence>
      <ImagePath>C:\Users\m\Desktop\pictures\me\IMG_20200214_015706.jpg</ImagePath>
      <imageFilePath>C:\Users\m\Desktop\pictures\2.jfif</imageFilePath>
      <Degree>D1</Degree>
      <Degree>A2</Degree>
      <ReleaseDate>31/03/2020</ReleaseDate>
      <Validation>31/03/2030</Validation>
      <CardNumber>4067510</CardNumber>
    </DrivingCardLicence>
  </User>

note : не все пользователи имеют элемент DrivingCardLicence, как вы можете видеть в коде xml, у пользователя id = 999999999 есть степень d1, но у пользователя id = 666666666 нет, поэтому x должен быть пустым.

1 Ответ

1 голос
/ 31 марта 2020

Вы хорошо справились с этим.

Вы забыли включить элемент root Users через. Element("Users")

var values = 
    from e in doc.Element("Users").Elements("User")
        .Single(c => c.Attribute("idNumber").Value == Properties.Settings.Default.idNumber)
        .Elements("DrivingCardLicence")
        .Elements("Degree")
    select e.Value;
...