Im really new to mvc so playing around slightly in the dark here. I am following along with the music store example to try learn mvc.
Im creating a cookbook type of application
I have created my ViewModel that looks like this
namespace CookMe_MVC.ViewModels
{
public class CookMeIndexViewModel
{
public int NumberOfReceipes { get; set; }
public List<string> ReceipeName { get; set; }
}
}
my controller looks like this
public ActionResult Index()
{
var meals= new List<string> { "Dinner 1", "Dinner 2", "3rd not sure" };
//create the view model
var viewModel = new CookMeIndexViewModel
{
NumberOfReceipes = meals.Count(),
ReceipeName = meals
};
return View(viewModel);
}
Finally my view looks like this
@model IEnumerable<CookMe_MVC.ViewModels.CookMeIndexViewModel>
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th></th>
<th>
Meals
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
</td>
<td>
@item.ReceipeName
</td>
</tr>
}
</table>
I get this error.
The model item passed into the dictionary is of type 'CookMe_MVC.ViewModels.CookMeIndexViewModel', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[CookMe_MVC.ViewModels.CookMeIndexViewModel]'.
I have followed the example however I cant see what I am doing wrong. So I be somehow returning my var viewModel as a generic list?
ANy help would be great!!! TIA