Error trying to pass a list of controller to view ASP NET MVC

3

Good morning,

I'm new to development, and I'm having trouble passing a list of a controller query to a view. I gave a researched and all the forms I found did not help much, if anyone can help me, I'll be grateful.

Follow the controller:

namespace DinheiroControlado.Controllers
{
public class RelatorioController : Controller
{
    //
    // GET: /Relatorio/
    private DinheiroControladoBD db2 = new DinheiroControladoBD();
    public ActionResult Index()
    {

        var cookie = DinheiroControlado.Repositorios.RepositoriosUsuarios.VerificaSeOUsuarioEstaLogado();
        var dados = (from d in db2.Movimentacoes
                    join c in db2.Categorias on d.IDCategoria equals c.IDCategoria
                    where d.IDUsuario == cookie.IDUsuario
                    group d by c.Descricao into g
                    select new { Categoria = g.Key, Valor = g.Sum(d => d.Valor)}).Take(5);

        ViewBag.grafico = dados;

        return View();
    }
}
}

Follow View:

@{
ViewBag.Title = "Index";
Layout = "~/Views/Layout2.cshtml";
}

<h2>Index</h2>
<table>
  <tbody>
    @{foreach (var item in ViewBag.grafico)
        {
            <tr>
                <td>
                    @item.Categoria
                </td>
                <td>
                    @item.Valor
                </td>

            </tr>
        }
    }
</tbody>

Error that is occurring:

Erro de Servidor no Aplicativo '/'. 'object' não contém uma definição para    'Categoria' Descrição: Ocorreu uma exceção sem tratamento durante a execução da atual solicitação da Web. Examine o rastreamento de pilha para obter mais informações sobre o erro e onde foi originado no código. 

Detalhes da Exceção: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'object' não contém uma definição para 'Categoria'

Erro de Origem: 

Linha 11: <tr>
Linha 12: <td>
Linha 13: @item.Categoria
Linha 14: </td>
Linha 15: <td> 
Arquivo de Origem:    c:\TCC\C#\DinheiroControlado\DinheiroControlado\Views\Relatorio\Index.cshtml    Linha: 13 

Rastreamento de Pilha: 
    
asked by anonymous 20.08.2015 / 13:22

1 answer

1

I advise you to do the following:

  • Create a class to encapsulate chart information
  • Add a data model for this view

You can do this as follows:

//Classe para o encapsulamento
public class ItemGrafico
{
    public string Categoria { get; set; }
    public decimal Valor { get; set; }
}

//Altere o select para new ItemGrafico
var dados = (from d in db2.Movimentacoes
                join c in db2.Categorias on d.IDCategoria equals c.IDCategoria
                where d.IDUsuario == cookie.IDUsuario
                group d by c.Descricao into g
                select new ItemGrafico { Categoria = g.Key, Valor = g.Sum(d => d.Valor)}).Take(5);

In your action on the controller do the following:

return View("NomeDaSuaView", dados);

Finally, in your view, make the following changes:

On the first line:

@model IEnumerable<seu.namespace.completo.ItemGrafico>

and in the% w_that% change to looks like this:

@foreach (var item in Model)
{
    <tr>
        <td>
           @item.Categoria
        </td>
        <td>
           @item.Valor
        </td>
    </tr>
}

By making these changes you should be able to do what you want without further problems.

    
20.08.2015 / 13:35