1
目前我有SelectList,它會寫入ID,並在窗體上顯示FirstName。在SelectList中組合2個字段
ViewBag.Person = new SelectList(db.Person, "ID", "FirstName");
如何將FirstName和LastName連接到SelectList中?喜歡的東西:
ViewBag.Person = new SelectList(db.Person, "ID", "FirstName & LastName");
[可能重複(http://stackoverflow.com/問題/ 2758734 /如何-可以-I結合 - 兩個領域-IN-A-選擇列表的文本描述使用) –