24.C#LINQ TO XML(十二章12.3)

來源:互聯網
上載者:User

標籤:

  自己也寫了那麼多,但還有很多不懂,有點浮躁吧,但飯還是要吃啊,說說LINQ TO XML吧。

  LINQ TO XML位於System.Xml.Linq程式集,並且大多數類型位於System.Xml.Linq命名空間。該命名空間下幾乎所有類型都以X為首碼;普通DOM API中的Element對應LINQ TO XML中的XElement。列舉下都有哪些類型。

  1. XName:表示元素和特性的名稱
  2. XNamespace:表示XML的命名空間,通常是一個URL
  3. XObject:是XNode和XAttribute的共同父類:與DOM API中不同,在LINQ TO XML中特性不是節點。如果某方法返回子節點的元素,這裡面是不包含特性的
  4. XNode:表示XML樹中的節點,它定義了各種用於操作和查詢樹的成員。
  5. XAttribute:表示包含名/值對的特性,值從本質上講是文本,但可以顯式地轉換成其它資料類型
  6. XContainer:是XML樹中包含子內容的節點
  7. XText:表示文本節點,其衍生類別XCData是CDATA文本節點
  8. XElement:它和XAttribute是LINQ TO XML中最常用的類,
  9. XDocument:表示文檔
  • 繼承於XContainer的Add方法有以下幾點:
  1. Null 參考會被忽略
  2. XNode和XAttribute執行個體可以添加
  3. 字串、數字、日期、時間等使用標準XML格式轉換成XText
  4. 其它沒有特殊處理的對象將調用ToString()將其轉換成文本
  • 使用的幾個執行個體
    1 var element = new XElement("root", new XElement("child"));2 Console.WriteLine(element);
    1 <root>2   <child />3 </root>
    1 var element1 = new XElement("root", new XElement("child", DateTime.Now));2 Console.WriteLine(element1);
    1 <root>2   <child>2015-01-28T22:35:41.9713268+08:00</child>3 </root>
    1 var list = new List<User> {2 new User {Name="a",Age=1 },3 new User {Name="b",Age=2 },4 new User {Name="c",Age=3 },5 new User {Name="d",Age=4 }6 };7 8 var element2 = new XElement("root", list.Select(user => new XElement("child", user.Name)));9 Console.WriteLine(element2);
    1 var element3 = new XElement("root", list.Select(user => new XElement("child", new XAttribute("name", user.Name), new XAttribute("age", user.Age))));2 Console.WriteLine(element3);
     1 <root> 2   <child>a</child> 3   <child>b</child> 4   <child>c</child> 5   <child>d</child> 6 </root> 7  8  9 <root>10   <child name="a" age="1" />11   <child name="b" age="2" />12   <child name="c" age="3" />13   <child name="d" age="4" />14 </root>

     

  • 查詢單個節點

  對於XElement來說可迭代的東西太多了,XElement包含很多軸方法(軸方法,個人理解就是直接了當的方法),如什麼什麼點,比如New Element("root").Elements就是返回在root下所有的子節點,New Element("root").Attributes就是root中所有特性節點。還是羅列下吧,但不止這些。

  1. Ancestors:祖先節點
  2. DescendantNodes:後代節點
  3. Annotations:注釋(注釋也是一個節點)
  4. Elements:子節點
  5. Descendants:後代
  6. 節點。。。。

  對單個節點使用的軸方法返回的節點序列,完全可以使用LINQ來查詢,或者使用擴充方法來做一些操作,可以看到LINQ從查詢記憶體中object到資料庫中的資料,再到XML,使用的都是相同的方法(對於我們使用者),完美地結合起來。

  請斧正。

24.C#LINQ TO XML(十二章12.3)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.