我想实现一个下拉列表,不知道如何处理。我想在下拉列表中填充员工全名。谢谢 注意:我使用的是asp.net核心剃须刀页面,而不是mvc。
//Employee model
public class Employee
{
[Key]
public int EmpId { get; set; }
public string FullName { get; set; }
public string EmailAddress { get; set; }
}