我有一个看起来像这样的模型:
public class Notes
{
public int NoteID {get; set;}
public string Note {get; set;}
public int CustomerID {get; set;}
{
在 Notes Details 视图中,我希望能够显示 Customer Name 而不是 CustomerID。显然,如果这是一个创建或编辑视图,我会使用一个下拉列表。但是我不确定如何在只读详细信息视图中显示值而不是 ID。
谢谢!