I have simple SelectList in my ActionResult:
ViewBag.ItemId = new SelectList(db.Items, "ItemId", "Name");
I'd like to show the item name with the item Specification
This is not working:
ViewBag.ItemId = new SelectList(db.Items, "ItemId", "Name" + "Specification");
Is there is an easy way to do this?