我正在从 Web 服务调用以下函数,但无法定义对象。
Dim x = (From a In _db.report _
Select ep = a.CurrentReport, CuCy = a.Current_Cycle) _
.Union _
(From b In _db.Counts _
Group b By b.Year, b.Report Into k() _ <--------(this is undefined)
Select ep = b.Report, CucY = b.Year).ToList().Take(10)
这是在联合查询中进行分组的正确方法吗?
我将不胜感激任何帮助。