我遇到以下LINQ查询的问题。当嵌套查询(item.Items)没有对象时,我得到异常“Value不能为null。参数名称:source。”。
如何让内部查询将空列表返回给查询中的项?
var items = from item in _repository.GetStreamItems()
select new
{
Title = item.Title,
Description = item.Description,
MetaData = item.MetaData,
ItemType = item.ItemType,
Items = from subItem in item.Items
select new
{
Title = subItem.Title,
Description = subItem.Description,
MetaData = subItem.MetaData,
ItemType = subItem.ItemType
}
};
这是使用方法调用而不是查询语法编写的相同查询。同样的问题:
var items = _repository.GetStreamItems()
.Select(x => new { Title = x.Title, Description = x.Description, MetaData = x.MetaData, ItemType = x.ItemType,
Items = x.Items.Select(x2 => new { Title = x2.Title, Description = x2.Description, MetaData = x2.MetaData, ItemType = x2.ItemType,
Items = x2.Items.Select(x3 => new { Title = x3.Title, Description = x3.Description, MetaData = x3.MetaData, ItemType = x3.ItemType }) }) });
任何想法如何测试或避免null item.Items值?我觉得这很简单,我很想念。
答案 0 :(得分:6)
假设它是LINQ to Objects且单项类名是Item
,请使用以下内容:
var items = from item in _repository.GetStreamItems()
select new
{
Title = item.Title,
Description = item.Description,
MetaData = item.MetaData,
ItemType = item.ItemType,
Items = from subItem in (item.Items ?? Enumerable.Empty<Item>())
select new
{
Title = subItem.Title,
Description = subItem.Description,
MetaData = subItem.MetaData,
ItemType = subItem.ItemType
}
};
??
被称为null-coalescing operator,如果左侧的值为null
,则会返回右侧的值。
在您的具体示例中,我们提供了一个空序列而不是null
,因此代码不会崩溃。
问题是您无法将查询应用于null
对象,而item.Items
似乎可能是null
。更好的解决方案是确保Items
属性在空时返回零序列,而不是null
。
如果您无法控制StreamItem
类但必须在许多地方执行类似的查询,那么创建一个“安全”的扩展方法可能会获得回报“拒绝”项目的回报:
public static IEnumerable<Item> SafeGetSubItems(this StreamItem parent)
{
return parent.Items ?? Enumerable.Empty<Item>();
}
这将允许您始终写:
Items = from subItem in item.SafeGetSubItems()
select new
{
// ...
}