1

私はこのdb.xmlファイルを持っています

<items>
 <item>
  <title>Title1</title>
  <year>2013</title>
  <categories>
   <category>Category1</category>
   <category>Category2</category>
   <category>Category3</category>
  </categories>
  <count>10</count>
 </item>
 (and so on)
</items>

私はそのように読んだ:

var items = from item in xdoc.Descendants("item")
               select new
               {
                   Title = item.Element("title").Value,
                   Year = item.Element("year").Value,
                   Categories = item.Element("categories").Value, // I know this is wrong 
                   Count = item.Element("count").Value
           };

問題は、カテゴリを読み取ってリストに追加する方法です。

foreach (var item in items)
{
    book.Title = item.Title;
    book.Year = item.Year;
    foreach (var Category in Categories)
    {
        book.Categories.Add(Category);
    }
    book.Count = item.Count;
    books.Add(book);
}
4

2 に答える 2

5

キャスト(to string、toなど、要素の値を直接読み取る)を使用することをお勧めします。これは、およびプロパティintの整数値を返すクエリです。YearCountCategoriesIEnumerable<string>

var items = from item in xdoc.Descendants("item")
            select new {
               Title = (string)item.Element("title"),
               Year = (int)item.Element("year"),
               Count = (int)item.Element("count"),
               Categories = from c in item.Element("categories").Elements()
                            select (string)c                   
            };

必要に応じCategoriesて、次のList<string>ようにカテゴリを解析します。

 Categories = item.Element("categories")
                  .Elements()
                  .Select(c => (string)c)
                  .ToList()
于 2013-03-21T13:27:32.010 に答える
4

あなたはその要素のリストを取ることができます

編集済み

var items = from item in xdoc.Descendants("item")
       select new
       {
           Title = item.Element("title").Value,
           Year = item.Element("year").Value,
           Categories = item.Descendants("categories").Descendants().Select(x=>x.Value).ToList(),
           Count = item.Element("count").Value
       };
于 2013-03-21T13:27:31.993 に答える