http://www.cnblogs.com/greatverve/archive/2010/07/09/linq-to-xml-add-delete-update-query.html
记录一下,别的都比较普通,只有这一句比较有意思。
doc.Root.Descendants("").Select(p=> new {}).Where();
跟jQuery的层级筛选比较类似jQuery("").children().first().html();
doc.Root.Descendants("floor").Select(p => new { Name = p.Element("name").Value }).Where(p => p.Name == "1楼层xml");
LINQ之路18:LINQ to XML之导航和查询
http://www.cnblogs.com/zwl12549/archive/2008/11/02/1324571.html