DAO
public List<Usuario> ListaVotos()
{
return context.Usuarios.SqlQuery("SELECT COUNT(*) AS Votos, NOMERESTAURANTE FROM USUARIOS GROUP BY NOMERESTAURANTE ORDER BY Votos DESC").ToList();
//return context.Usuarios.ToList();
}
Controller
` public ActionResult Index()
{
List<Usuario> restaurantes = contagemDAO.ListaVotos();
return View(restaurantes);
}
Estou tentando listar uma consulta que agrupa o numero de itens que aparece com o mesmo nome, mas aparece esse errro.
dditional information: The data reader is incompatible with the specified 'OndeAlmocar.DAO.Usuario'. A member of the type, 'Id', does not have a corresponding column in the data reader with the same name.