我的模型中有以下类:
public abstract class Entity : IEntity
{
[ScaffoldColumn(false)]
public int Id { get; set; }
[Required,StringLength(500)]
public string Name { get; set; }
}
和
public class Model : SortableEntity
{
[Required]
public ModelType Type { get; set; }
[ListRequired]
public List<Producer> Producers { get; set; }
public List<PrintArea> PrintAreas { get; set; }
public List<Color> Colors { get; set; }
}
要在视图中显示“模型”类,我只需调用 Html.EditorFor(model=>model),但最后呈现基类的“名称”属性,这不是所需的行为。
是否有可能以某种方式影响显示字段的顺序?