Browse Source

Group 方法不再忽略 null 元素

master
王厅 3 days ago
parent
commit
cba8401f6e
  1. 2
      Apewer/CollectionUtility.cs

2
Apewer/CollectionUtility.cs

@ -1019,8 +1019,6 @@ namespace Apewer
var dict = new SortedDictionary<TKey, List<TValue>>();
foreach (var item in items)
{
if (item.IsNull()) continue;
var key = keyGetter.Invoke(item);
if (key.IsNull()) continue;

Loading…
Cancel
Save