Array[] arr = {};
arr = Table<T>()
.ToArray()
.Where(g => g.EventDateTimeUTC.Date.ToString("dd/MM/yyyy") == date)
.GroupBy(l => l.Description.Distinct(),
(Description,items) => new{ key= Description,
count = items.Count()});
return arr;
我收到这个错误
无法将类型“System.Collections.Generic.IEnumerable”隐式转换为“System.Array[]”