public ActionResult Index() { string title = "请选择"; ViewBag.ProductAttribute = (_productattributeContract.SelectList(title).Select(m => new SelectListItem { Text = m.Key, Value = m.Value })).ToList(); return(View()); }