使用 LINQ 阅读基于 where 子句的 CDATA 部分
本文关键字:子句 CDATA 部分 where LINQ 使用 | 更新日期: 2023-09-27 18:36:30
我正在尝试读取基于 where 子句的 xml 节点的 CDATA 部分。
<Book>
<BookItem ISBN="SKS84747"><![CDATA[20]]> </BookItem>
<BookItem ISBN="LHKGOI84747"><![CDATA[50]]> </BookItem>
<BookItem ISBN="PUOT84747"><![CDATA[20]]> </BookItem>
</Book>
这段代码为我提供了所有 CDATA 部分,
var value = from v in x.Descendants("BookItem").OfType<XCData>()
select (string)v.Value;
如何放置基于ISBN的where子句?如何使用 LINQ to XML 读取此 CDATA。
var value = x.DescendantNodes().OfType<XCData>()
.Where(m => m.Parent.Name == "BookItem" && m.Parent.Attribute("ISBN").Value == "PUOT84747")
.ToList();
或
在 ToList() 之前
.Select(cdata => cdata.Value.ToString());
var xml = Resource1.String1;
var doc = XDocument.Parse(xml);
var isbn = "SKS84747";
var query = string.Format("BookItem[@ISBN='{0}']", isbn);
var book = doc.Root.XPathSelectElement(query);
if (book != null)
Console.WriteLine(book.Value);
或
var book =
doc.Root.Descendants("BookItem").Where(
x => x.Attribute("ISBN") != null && x.Attribute("ISBN").Value == isbn).Select(x => x.Value).
FirstOrDefault();
或
var book = (from item in doc.Root.Descendants("BookItem")
where item.Attributes("ISBN").Any() && item.Attribute("ISBN").Value == isbn
select item.Value).FirstOrDefault();