I'm trying to create a multi-select box and so far tried many things.
public class DepartmentDropDown
{
public int Id { get; set; }
public string Name { get; set; }
}
public class DeviceUserReportViewModel
{
public List<int> DepartmentIds { get; set; }
public List<DepartmentDropDown> Departments { get; set; }
}
public IActionResult DeviceUserReport()
{
IEnumerable<DepartmentDropDown> departments = _unitOfWork.Repository<Department>().Get().Select(s=> new DepartmentDropDown { Id = s.Id, Name = s.Name });
DeviceUserReportViewModel model = new DeviceUserReportViewModel
{
Departments = departments
};
}
And in the DeviceUserReport.cshtml
@Html.ListBoxFor(s => s.DepartmentIds,new MultiSelectList(Model.Departments,"Id","Name"),new { @class = "form-control"})
It still shows the list box like this.


