I\'m using MVC 4, .Net 4, and Visual Studio 2012.
I\'m trying to use a fairly complex model with one of my views, and I\'m having serious trouble getting it to bind prop
I had to do something like this, and I had to do with the dictionary value in an array of decimals (Dictionary< string, decimal[] >). If it helps, I did like this:
@foreach (var kvp in Model.MyDictionary) { @kvp.Key @for (int i = 0; i < kvp.Value.Count(); i++) { } }