我有以下查询,但显示错误。GroupBy 怎么可能?
IList<tbl_roadmapautomation> allproductdata = _context.tbl_roadmapautomation.GroupBy(p=>p.Stream).ToList();
这里“Stream”是我想要分组的列名。
错误:无法将类型“System.Collections.Generic.List>”隐式转换为“System.Collections.Generic.IList”。存在显式转换(您是否缺少演员表?)
请建议我如何解决此错误。提前感谢您的帮助。