如果where条件没有返回结果,如何向返回的集合插入默认值?
from i in data.collection where i.Type == type select i.Count
解决方法
使用
Enumerable.DefaultIfEmpty
方法执行此操作.
示例(在方法语法中因为恕我直言不太尴尬):
data.collection.Where(i => i.Type == type) .DefaultIfEmpty(defaultObject) .Select(i => i.Count);