Currently I have SelectList that writes ID, and shows FirstName on the form.
ViewBag.Person = new SelectList(db.Person, "ID", "FirstName");
How to concatenate FirstName and LastName into SelectList? Something like:
ViewBag.Person = new SelectList(db.Person, "ID", "FirstName & LastName");