I am building my first MVC app after following the Music Store tutorial and have ran into some problems when trying to pass data between strongly typed views.
I have two datatypes with their own strongly typed views
Customer Customer Site
In the index view of customer site (which returns a lits of customer sites) i need to display the customer name next to each site address, the view is strongly typed to customer site but the customer name is stored in the customer table so it wont allow me to access this directlty from the model?
I know that one option is to use the viewbag, i have successfully done this to display the Customer Name in a drop down list on my create view using the following code
Customer Site Controller/////////
public ActionResult Create()
{
ViewBag.Id = new SelectList(db.Customers, "Id", "CustomerName");
return View();
}
Index view//////////
@Html.DropDownListFor(model => model.CustomerId, (IEnumerable<SelectListItem>)ViewBag.Id)
This works fine but now i need to the customer name to be inserted each table row rather than a drop down list. Can anyone kindly offer any pointers on how i can retrieve a list of customer names to be rendered in a table in the index view of the customer site?
Also is the viewbag the best way to pass data between views or are there other alternative methods? Is there a way to strongly type a view with multiple data types?
Any advice anyone can offer would be great.
Kind Regards
Liam