Добавяне на дъщерни възли към XElement

Опитвам се да добавя обекти в XML файл. Проблемът, който имам в момента, е, че добавя всичко на самото първо ниво. Опитвам се да имам списъка като родителски елемент и елементи от списъка като дъщерни елементи.

Какво опитах: Попаднах на няколко публикации, в които използват цикли, но не мога да свържа това с моя контекст и код.

Код:

XDocument xDocument = XDocument.Load(@"C:\Users\hci\Desktop\Nazish\TangramsTool\TangramsTool\patterndata.xml");
XElement root = xDocument.Element("Patterns");
foreach (Pattern currentPattern in PatternDictionary.Values)
{
     String filePath = currentPattern.Name.ToString();
     IEnumerable<XElement> rows = root.Descendants("Pattern"); // Returns a collection of the descendant elements for this document or element, in document order.
     XElement firstRow = rows.First(); // Returns the first element of a sequence.
     if (currentPattern.PatternDistancesList.Count() == 9)
     {
           firstRow.AddBeforeSelf( //Adds the specified content immediately before this node.
           new XElement("Pattern"),
           new XElement("Name", filePath.Substring(64)),
           new XElement("PatternDistancesList"),
           new XElement("PatternDistance", currentPattern.PatternDistancesList[0].ToString()),
           new XElement("PatternDistance", currentPattern.PatternDistancesList[1].ToString()),
     }
}

Текущ XML файл:

<Pattern/> 
<Name>match.jpg</Name> 
<PatternDistancesList/>       
<PatternDistance>278</PatternDistance>
<PatternDistance>380</PatternDistance> 

Какво бих искал като краен резултат:

<Pattern> 
<Name>match.jpg</Name> 
<PatternDistancesList>       
    <PatternDistance>278</PatternDistance>
    <PatternDistance>380</PatternDistance>
</PatternDistancesList> 
<Pattern/>

Всякакви съвети ще бъдат много оценени. Нов съм в WPF и C#, така че все още се опитвам да науча неща.


person Naaz    schedule 22.09.2015    source източник


Отговори (1)


Това трябва да свърши работа:

firstRow.AddBeforeSelf(
    new XElement("Pattern",
        new XElement("Name", filePath.Substring(64)),
        new XElement("PatternDistancesList",
            new XElement("PatternDistance", currentPattern.PatternDistancesList[0].ToString()),
            new XElement("PatternDistance", currentPattern.PatternDistancesList[1].ToString()))));
person MarcinJuraszek    schedule 22.09.2015
comment
Благодаря ви много, това работи като чар! Трябваше да се опитам да ги обединя в XElement ›.‹ - person Naaz; 22.09.2015