我的模型中有这样的属性:
[Required(ErrorMessage = "Select a user!!!")]
public Guid UserId { get; set; }
在 MVC 视图中我有
<td>*@Html.LabelFor(model => model.UserId) :</td>
<td>@Html.DropDownList("UserId", "--Select--")</td>
在我的 html 源代码中,我有:
<select id="UserId" name="UserId">
<option value="">--Select--</option>
<option value="30afa71d-6983-410a-bb68-26fd2438b969">User A</option>
<option value="b1d81277-72bc-4aa6-8fc4-524cd01d47a4">User B</option>
</select>
我如何验证用户选择用户的这个属性