我有一个下拉列表如下: -
@Html.DropDownListFor(model => model.NewPipelineEaPersonId, new SelectList(Model.EaList, "PersonId", "FullName"), "Please select one", new { style = "width: 250px;" })
我的课程如下:-
public class LeadPipelineEntry
{
[Required]
public int PipelineTransactionId { get; set; }
public Guid NewPipelineEaPersonId { get; set; }
}
这部分不需要 Guid,但它仍然会引发必填字段错误。
我也不想将 guid 作为可空参数
我知道选择字段可以做到这些。
但是我可以将第一项“请选择一项”的值设为Guid.Empty
吗?
我只想在视图中管理它。