標籤:
自己也寫了那麼多,但還有很多不懂,有點浮躁吧,但飯還是要吃啊,說說LINQ TO XML吧。
LINQ TO XML位於System.Xml.Linq程式集,並且大多數類型位於System.Xml.Linq命名空間。該命名空間下幾乎所有類型都以X為首碼;普通DOM API中的Element對應LINQ TO XML中的XElement。列舉下都有哪些類型。
- XName:表示元素和特性的名稱
- XNamespace:表示XML的命名空間,通常是一個URL
- XObject:是XNode和XAttribute的共同父類:與DOM API中不同,在LINQ TO XML中特性不是節點。如果某方法返回子節點的元素,這裡面是不包含特性的
- XNode:表示XML樹中的節點,它定義了各種用於操作和查詢樹的成員。
- XAttribute:表示包含名/值對的特性,值從本質上講是文本,但可以顯式地轉換成其它資料類型
- XContainer:是XML樹中包含子內容的節點
- XText:表示文本節點,其衍生類別XCData是CDATA文本節點
- XElement:它和XAttribute是LINQ TO XML中最常用的類,
- XDocument:表示文檔
- 繼承於XContainer的Add方法有以下幾點:
- Null 參考會被忽略
- XNode和XAttribute執行個體可以添加
- 字串、數字、日期、時間等使用標準XML格式轉換成XText
- 其它沒有特殊處理的對象將調用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中所有特性節點。還是羅列下吧,但不止這些。
- Ancestors:祖先節點
- DescendantNodes:後代節點
- Annotations:注釋(注釋也是一個節點)
- Elements:子節點
- Descendants:後代
- 節點。。。。
對單個節點使用的軸方法返回的節點序列,完全可以使用LINQ來查詢,或者使用擴充方法來做一些操作,可以看到LINQ從查詢記憶體中object到資料庫中的資料,再到XML,使用的都是相同的方法(對於我們使用者),完美地結合起來。
請斧正。
24.C#LINQ TO XML(十二章12.3)