我需要在 List 中获得以下输出,我使用的是 MVC4 和 C#。基本上我需要执行的查询是:
SELECT ESTADO, COUNT(*)
FROM VISITAS
WHERE CICLOID=ID
GROUP BY ESTADO;
为了实现这一点,我在我的存储库中编写了以下过程:
public List<object> PorcentajeVisitasCiclo(Guid id)
{
return new List<object> {_context.Visitas
.Where(a => a.CicloId == id)
.GroupBy(a => a.Estado)
.Select(n => new { Text = n.Key.Descripcion , Value = n.Count() })};
}
你能指出我哪里出错了吗?它没有给出任何编译错误,但是它没有返回任何东西
预先感谢