- XElement books = XElement.Parse(
- @"<books>
- <book>
- <title>Pro LINQ: Language Integrated Query in C# 2010</title>
- <author>Joe Rattz</author>
- </book>
- <book>
- <title>Pro .NET 4.0 Parallel Programming in C#</title>
- <author>Adam Freeman</author>
- </book>
- <book>
- <title>Pro VB 2010 and the .NET 4.0 Platform</title>
- <author>Andrew Troelsen</author>
- </book>
- </books>");
- var titles =
- from book in books.Elements("book")
- where (string)book.Element("author") == "Joe Rattz"
- select book.Element("title");
- foreach (var title in titles)
- Console.WriteLine(title.Value);
- Console.ReadLine();
Thứ Hai, 3 tháng 9, 2012
Một ví dụ mẫu đơn giản về cách sử dụng Linq to XML
Đăng ký:
Bài đăng
(
Atom
)