基礎知識
1. LINQ的讀法:(1)lin k (2)lin q
2. LINQ的關鍵詞:from, select, in, where, group by, order by …
3. LINQ的注意點:必須以select或者是group by 結束。
4. LINQ的語義:
from 臨時變量 in 集合對象或數據庫對象
where 條件表達式
[order by條件]
select 臨時變量中被查詢的值
[group by 條件]
LINQ的查詢返回值的類型是臨時變量的類型,可能是一個對象也可能是一個集合。並且LINQ的查詢表達式是在最近一次創建對象時才被編譯的。LINQ的查詢一般跟var關鍵字一起聯用 (什麼是var?匿名對象) 。以下的兩個查詢表達式是一樣的效果:
var q = from name in methods所以這樣的我們就可以對LINQ的查詢表達式進行嵌套查詢:
where (name.Name.Length > 15)
select name;
IEnumerable<MethodInfo> p = from name in methods
where (name.Name.Length > 15)
select name;
var q = from t in5. LINQ的全稱:Language-Integrated Query
(from name in methods
where (!name.IsVirtual)
select name)
where (t.Name.Length > 15)
select t.Name;
MethodInfo[] methods = typeof(string).GetMethods();LINQ to Object主要是基於.Net框架裡的Lambda表達式來實現的,因此上面的代碼運行結果等同於下面的代碼:
var q = from t in methods
where (t.Name.Length > 15)
select t;
MethodInfo[] methods = typeof(string).GetMethods();
var q = methods
.Where((method) => method.Name.Length > 15)
.Select((name) => name.Name);
XElement xelem = XElement.Load(@"example.XML");在.Net3.5中,框架對XML的操作進行了擴展,這個擴展就是LINQ to XML。在名稱空間System.Xml.LINQ下。從以上的代碼我們可以看到增加了一個新的XElement對象。我們通過XElement.Load方法來裝載XML文檔,而不是傳統的DOM模式XMLDocument.Load。
// 查詢節點名為Item,並返回它們的PartNumber屬性值的集合
IEnumerable<string> partNos = from item in xelem.Descendants("Item")
Select (string)item.Attribute("PartNumber");
foreach (string str in partNos)
Console.WriteLine(str);
XElement contacts =LINQ to XML提供了為豐富並且簡潔的類來實現對XML的操作。相對於種類繁多的DOM模型的XML類庫而言,LINQ的類使我們的學習曲線變得平滑並且還能達到相同的效果。LINQ to XML解決了DOM模型中的幾個比較不方便的問題,如修改節點名字的問題;同時也拋棄了一些看起來很強大但是很不常用的東西,如實體和實體引用。這樣使得LINQ to XML的操作速度更快並且更方便。以下的幾個例子將展示給大家LINQ to XML如何完成節點名稱修改,增加和刪除的效果。
new XElement("Contacts",
new XElement("Name", "Ice Lee"),
new XElement("Phone", "010-876546",
new XAttribute("Type", "Home")),
new XElement("Phone", "425-23456",
new XAttribute("Type", "Work")),
new XElement("Address",文章整理:學網 http://www.xue5.com (本站) [1] [2] [3] [4] [5] [6]
new XElement("Street", "ZhiXinCun"),
new XElement("City", "Beijin")
)
);
輸出結果:
<? XML version="1.0" encoding="utf-8"?>
<Contacts>
<Name>Ice Lee</Name>
<Phone Type="Home">010-876546</Phone>
<Phone Type="Work">425-23456</Phone>
<Address>
<Street>ZhiXinCun</Street>
<City>Beijing</City>
</Address>
</Contacts>
接下來我們再看一下如何利用LINQ to XML來更新XML的信息。對XML文檔進行更新主要包括兩個方面,一個方面是對元素屬性和值得更新;另一方面是對元素名稱的更新。在一般情況下,我們通常只對元素的屬性和值進行更新,代碼如下:
public cla歡迎光臨學網,點擊這裡查看更多文章教程 [1] [2] [3] [4] [5] [6]
ss MyAnnotation
{
private string tag;
public string Tag { get { return tag; } set { tag = value; } }
public MyAnnotation(string tag)
{
this.tag = tag;
}
}
… …
MyAnnotation ma = new MyAnnotation("T1");
XElement root = new XElement("Root", "content");
root.AddAnnotation(ma);
MyAnnotation ma2 = (MyAnnotation)root.Annotation<MyAnnotation>();
XElement xelem = XElement.Load(@"example.XML");
var partNos = from item in xelem.Descendants("Item")
where item.Attribute("PartNumber").Value == "872-AA"
select item;
foreach (XElement node in partNos)
{
node.Value = "Hello";
Console.WriteLine(node.Value);
}
var partNos = from item in xelem.Descendants("ProductName")
where item.Value == "Lawnmower"
XElement xel = XElement.Load(@"example.XML");上面的代碼是將所有名稱為Item的元素替換成名稱為Element。細心的讀者可以看到我在for循環中獲取itemNos的孩子都使用0這個索引值,為什麼呢?這是因為在枚舉器中如果前面的對象消失那麼索引位置就會下移,那麼當我們替換一個元素後,下一個元素的索引自動變為0,所以我們只要循環指定次數就可以遍歷所有元素來。這也是為什麼不用foreach的原因。那麼我們進一步的出思考XML名稱替換這個問題。我們會發現LINQ to XML的XElement類提供了4個方法用來支持該功能:ReplaceAll, ReplaceAttributes, ReplaceNodes和ReplaceWith。這四個方法除了ReplaceWith是操作本元素以為,其他的都是操作元素的孩子或是屬性內容。這裡提供的好處是如果我們想遍歷替換操作,就不必去重復的查詢目標元素。
var itemNos = from item in xel.Descendants("Item")
select item;
int n = itemNos.Count();
for (int i=0; i<n; i++)
{
// 新創建節點
XElement nEl = new XElement("Element");
// 轉移孩子節點
nEl.Add(itemNos.ElementAt(0).Elements());
// 替換
itemNos.ElementAt(0).ReplaceWith(nEl);
}
Console.Write(xel);
XElement xelem = XElement.Load(@"example.XML");
var partNos = from item in xelem.Descendants("Item")
where item.Attributes("PartNumber").Single().Value == "872-AA"
select item;
partNos.Remove();
Console.Write(xelem);
匿名對象無疑是為LINQ而存在的,就像我們最前面的實例一樣當查詢返回的是集合對象或是新對象的時候,你需要先定義返回集合的類型,這很困難也很麻煩。這裡再提一下LINQ的語法:
/ 返回一個關於Item的集合,該集合的變量名為item.對於所有的LINQ語句,總是從上層傳遞結果到下層去處理。所以當我們在考慮查詢語句的時候,也要注意每一句的返回值。
from item in xelem.Descendants("Item")
// 將上面的集合返回出去
select item;