Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 .NET Framework 2,但无法使用 LINQ to XML。执行从加载到 XmlDocument 对象的 XML 文件中返回多列的 SQL SELECT 等效项的最佳方法是什么?
使用 XPath 和 SelectNodes 函数:
从链接的文章:
System.Xml.XmlNodeList MSPressBookList = xmldoc.SelectNodes("//Publisher[. = 'MSPress']/parent::node()/Title");
http://support.microsoft.com/kb/318499