从一个或多个值为null的属性创建XElement时,“值不能为null”

时间:2017-05-19 10:15:05

标签: c# .net xml linq linq-to-xml

我正在尝试以下代码:

XElement element = new XElement("ENTS", from i in notificationsTracking
select new XElement("ENT", 
new object[] {
    new XAttribute("ENTID", i.TrackingID),
    new XAttribute("PID", i.Response?.NotificationProvider),
    new XAttribute("UID", i.Response?.NotificationUniqueId)
}));

当响应不为null并且“NotificationProvider”或“NotificationUniqueId”字段中存在值时,此方法正常工作。但是,如果这三个中的任何一个为null,那么我收到一个错误 - “值不能为空”。

我知道有一个解决方案,我可以明确地将对象/属性与Null / Empty进行比较,并可以相应地转换它们,这将起作用。

但是有没有优化或更有效的方法来解决这个问题?

谢谢和问候,

Nirman

1 个答案:

答案 0 :(得分:3)

你只需要一次空检查即可(并且你不需要封闭对象[]):

XElement element = new XElement("ENTS", from i in notificationsTracking
select new XElement("ENT", 
    new XAttribute("ENTID", i.TrackingID),
    i.Response != null ? new [] {
        new XAttribute("PID", i.Response.NotificationProvider),
        new XAttribute("UID", i.Response.NotificationUniqueId),
        // more i.Response props ...
    } : null
));

如果只有两个,只需重复检查:

XElement element = new XElement("ENTS", from i in notificationsTracking
select new XElement("ENT", 
    new XAttribute("ENTID", i.TrackingID),
    i.Response != null ? new XAttribute("PID", i.Response.NotificationProvider) : null,
    i.Response != null ? new XAttribute("UID", i.Response.NotificationUniqueId) : null
));