我一直在使用LINQ to XML,并且遇到了一个问题。我真的很感激任何帮助。我是LINQ to XML的新手,但我发现它很容易使用。
我有两个不同的联合供稿,我使用Union汇总到一个单一的联合供稿。最终的联合供稿包含10个项目。
我正在尝试使用XDocument和XElement将联合供稿写入XML文件。在大多数情况下,我已经成功地做到了这一点。但是,Feed中的某些项目没有描述作为节点元素。当我到达没有这个节点元素的项目时,我得到一个Exception,因为我没有其中一个项目的描述节点。在开始编写XML文件之前,如何检查项目以查看是否存在名为description的节点?如果项目不包含描述节点,我怎么能用默认值填充它?你能告诉我任何解决方案吗?谢谢你所有的时间!
SyndicationFeed combinedfeed = new SyndicationFeed(newFeed1.Items.Union(newFeed2.Items).OrderByDescending(u => u.PublishDate));
//save the filtered xml file to a folder
XDocument filteredxmlfile = new XDocument(
new XDeclaration("2.0", "utf-8", "yes"),
new XElement("channel",
from filteredlist in combinedfeed.Items
select new XElement("item",
new XElement("title", filteredlist.Title.Text),
new XElement("source", FormatContent(filteredlist.Links[0].Uri.ToString())[0]),
new XElement("url", FormatContent(filteredlist.Links[0].Uri.ToString())[1]),
new XElement("pubdate", filteredlist.PublishDate.ToString("r")),
new XElement("date",filteredlist.PublishDate.Date.ToShortDateString()),
// I get an exception here as the summary/ description node is not present for all the items in the syndication feed
new XElement("date",filteredlist.Summary.Text)
)));
string savexmlpath = Server.MapPath(ConfigurationManager.AppSettings["FilteredFolder"]) + "sorted.xml";
filteredxmlfile.Save(savexmlpath);
答案 0 :(得分:0)
只需检查null
:
new XElement("date",filteredlist.Summary !=null ? filteredlist.Summary.Text : "default summary")