c# – Linq To Xml Null检查属性

前端之家收集整理的这篇文章主要介绍了c# – Linq To Xml Null检查属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<books>
   <book name="Christmas Cheer" price="10" />
   <book name="Holiday Season" price="12" />
   <book name="Eggnog Fun" price="5" special="Half Off" />
</books>

我想使用linq解析这个,我很好奇他人用什么方法来处理特殊的.我目前使用的方法是:

var books = from book in booksXml.Descendants("book")
                        let Name = book.Attribute("name") ?? new XAttribute("name",string.Empty)
                        let Price = book.Attribute("price") ?? new XAttribute("price",0)
                        let Special = book.Attribute("special") ?? new XAttribute("special",string.Empty)
                        select new
                                   {
                                       Name = Name.Value,Price = Convert.ToInt32(Price.Value),Special = Special.Value
                                   };

我想知道如果有更好的方法解决这个问题.

谢谢,

> Jared

解决方法

您可以将属性转换为字符串.如果它不存在,你将得到null,后续的代码应该检查null,否则它将直接返回值.

改为:

var books = from book in booksXml.Descendants("book")
            select new
            {
                Name = (string)book.Attribute("name"),Price = (string)book.Attribute("price"),Special = (string)book.Attribute("special")
            };

猜你在找的C#相关文章