I'm not able to assign generic list to ViewBag:

var m = from i in Enumerable.Range(0, 12)
        let now = DateTime.Now.AddMonths(i)
        select now.ToString("MMMM") + " " + now.Year.ToString();

ViewBag.b = m;

I am getting this when i see the ViewBag value:

System.Linq.Enumerable.WhereSelectEnumerableIterator<int,string>
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You can cast it to a list like this:

var m = (from i in Enumerable.Range(0, 12)
         let now = DateTime.Now.AddMonths(i)
         select now.ToString("MMMM") + " " + now.Year.ToString()).ToList();
ViewBag.b = m;

And then in your view:

@{
    var myList = ViewBag.b as List<string>;
}

<ul>
    @foreach (var item in myList)
    {
        <li>@item</li>
    }
</ul>
link|improve this answer
feedback

The items in the list will be calculated dynamically when you do a foreach over that value. if it makes you feel better though, you can drop a .ToList in there

var m = (from i in Enumerable.Range(0, 12)
                    let now = DateTime.Now.AddMonths(i)
                    select now.ToString("MMMM") + " " + now.Year.ToString()).ToList();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.