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

Asked

Viewed 420 times

3

Good morning, everyone,

I’m new to development, and I’m having trouble passing a list of a controller query to a view. I did some research and all the ways I found didn’t help much, if anyone can help me on this I’ll be grateful.

Follows 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();
    }
}
}

Segue 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: 

1 answer

1


I advise you to do the following:

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

You can do it this way:

//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 controller action do the following:

return View("NomeDaSuaView", dados);

And finally in your view make the following changes:

In the forefront:

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

and in the foreach change it to look like this:

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

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

  • Thank you so much man!!! That’s what I needed!! It worked out!!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.