您好,登錄后才能下訂單哦!
本篇內容介紹了“如何用LINQ進行查詢”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
LINQ to XML 提供使用 .NET 語言集成查詢 (LINQ) Framework 的內存中 XML 編程接口。LINQ to XML 使用***的 .NET Framework 語言功能,相當于更新的和重新設計的文檔對象模型 (DOM) XML 編程接口。
LINQ 系列技術提供了針對對象 (LINQ to Objects)、關系數據庫 (LINQ to SQL) 和 XML (LINQ to XML) 的一致查詢體驗。
現在有一個專門的System.Xml.Linq的命名空間
XDocument srcTree = new XDocument( new XComment("This is a comment"), new XElement("Root", new XElement("Child1", "data1"), new XElement("Child2", "data2"), new XElement("Child3", "data3"), new XElement("Child2", "data4"), new XElement("Info5", "info5"), new XElement("Info6", "info6"), new XElement("Info7", "info7"), new XElement("Info8", "info8"), new XElement("Test","Chenxizhang",new XAttribute("ID",10248)) ) ) Console.WriteLine(srcTree); XDocument doc = new XDocument( new XComment("This is a comment"), new XElement("Root", from el in srcTree.Element("Root").Elements() where ((string)el).StartsWith("data") select el ) ); Console.WriteLine(doc); Console.Read();
使用命名空間的例子
XNamespace aw = "http://www.adventure-works.com";
XElement root = new XElement(aw + "Root",new XAttribute(XNamespace.Xmlns + "aw",
"http://www.adventure-works.com"),new XElement(aw + "Child", "child content"));Console.WriteLine(root);
Console.Read();
“如何用LINQ進行查詢”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。