This is my EmployeeInfo Model: Public partial class EmployeeInfo { public int EmployeeInfoId { get; set; } public string LastName { get; set; } = null!; public string EmailAddress { get; set; } = null!; public virtual Reassignment? Reassignment { get; set; } } public partial class Reassignment { public int ReassignmentId { get; set; } public int EmployeeInfoId { get; set; } public virtual EmployeeInfo EmployeeInfo { get; set; } = null!; public virtual ICollection ReassignmentSectionJoins { get; } = new List(); } public partial class ReassignmentSectionLookup { public int ReassignmentSectionLookupId { get; set; } public string Category { get; set; } = null!; public string Section { get; set; } = null!; public virtual ICollection ReassignmentSectionJoins { get; } = new List(); } public partial class ReassignmentSectionJoin { public int ReassignmentSectionJoinId { get; set; } public int ReassignmentId { get; set; } public int ReassignmentSectionLookupId { get; set; } public virtual Reassignment Reassignment { get; set; } = null!; public virtual ReassignmentSectionLookup ReassignmentSectionLookup { get; set; } = null!; } This is what I have in my controller class: public async Task Index() { var ITSections= new List(); ITSections= await _employeeService.GetITSections(); } ViewData["ITSections"] = ITSections.Select(x => new SelectListItem { Value = x.ReassignmentSectionLookupId.ToString(), Text = x.Section }).ToList(); public async Task> GetITSections() { return await _ackContext.ReassignmentSectionLookups.Where(s => s.Category == "IT").ToListAsync(); ; } My razor view looks like this:

ACR IT

@{ var ITSections = ViewData["ITSections"] as List; if (ITSections != null && ITSections.Any()) { foreach (var item in ITSections) { @item.Text
} } }
I am getting an error at this line name="@Model.Reassignment.ReassignmentSectionJoins.ToList()[count].ReassignmentSectionLookup" saying : The delegate type could not be inferred. The issue is when I do HTTPPost. I dont see any value in the employeeInfo, but I do see value in selectedItems: any help will be appreciated.