How do I specify which field should be displayed with MVC Scaffolding
问题 I am creating an MVC4 application using EF Code First database. I am working with some foreign key declarations. I wish to use define the field to display in the dropdown in the scaffolding in the model declarations. For instance: My simplified model declaration is as follows: public class Contact { public int ID { get; set; } public string Prefix { get; set; } public string First { get; set; } public string Middle { get; set; } public string Last { get; set; } public string FullName { get {