ListBoxFor'List'错误需要是'SelectedListItem'

时间:2017-03-23 19:19:49

标签: asp.net-mvc-viewmodel

https://www.codeproject.com/Articles/702890/MVC-Entity-Framework-and-Many-to-Many-Relation示例后,发布Edit.cshtml时出现了下一个错误:

“具有键'SelectedTelephoneCellulaires'的ViewData项的类型为'System.Collections.Generic.List',但必须是'IEnumerable'类型。”

我在线搜索(当然!),但两个最接近的相关问题 - 答案(Issues converting types to new selectitemlist& @Html.DropDownListFor not posting back to controller)没有为我的难度带来任何解决方案。

这是我的ViewModel的一部分(为了便于阅读,节食):

public partial class EmployeVM
{        
    public Employe Employe { get; set; } //Employe

    public IEnumerable<SelectListItem> AllTelephoneCellulaires { get; set; } //TelephoneCellulaire        
    private List<int> _selectedTelephoneCellulaires;
    public List<int> SelectedTelephoneCellulaires
    {
        get
        {
            if (_selectedTelephoneCellulaires == null)
            {
                _selectedTelephoneCellulaires = Employe.TelephoneCellulaire1.Select(m => m.IdTelephoneCellulaire).ToList();
            }
            return _selectedTelephoneCellulaires;
        }
        set { _selectedTelephoneCellulaires = value; }
    }
}

}

我的EmployesController的一部分(关于饮食):

[HttpPost]
    [ValidateAntiForgeryToken]        
    public ActionResult Edit(EmployeVM employeView)
    {
        if (employeView == null)
        {
            return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
        }

        if (ModelState.IsValid)
        {
            var employeToUpdate = db.Employe
                .Include(e => e.TelephoneCellulaire1)
                [...]
                .First(e => e.IdEmploye == employeView.Employe.IdEmploye);

            if (TryUpdateModel(employeToUpdate, "Employe", new string[] { "NomEmploye", "PrenomEmploye", "IdTitre", "IdDepartement", "IdSuperviseur", "DateEmbauche", "DateDepart", "StatutEmploye", "IdEmployeur", "IdLocalisation", "Langue", "CarteAcces", "TelephoneCellulaire", "IdTelephoneBureau", "CarteAffaire", "EquipementInformatique", "AdresseCourriel", "GroupeSecurite", "AccesApplicatif", "CodeAlarme", "CleBatiment", "VehiculeCompagnie", "DateNaissance", "IsSuperviseur", "IsActif" }))
            {
                var newTelephoneCellulaires = db.TelephoneCellulaire.Where(m => employeView.SelectedTelephoneCellulaires.Contains(m.IdTelephoneCellulaire)).ToList();
                [...]

                var updatedTelephoneCellulaires = new HashSet<int>(employeView.SelectedTelephoneCellulaires);
                [...]

                foreach (TelephoneCellulaire telephone in db.TelephoneCellulaire)
                {
                    if (!updatedTelephoneCellulaires.Contains(telephone.IdTelephoneCellulaire))
                    {
                        employeToUpdate.TelephoneCellulaire1.Remove(telephone);
                    }
                    else
                    {
                        employeToUpdate.TelephoneCellulaire1.Add(telephone);
                    }
                }
                [...]

                db.Entry(employeToUpdate).State = EntityState.Modified;
                db.SaveChanges();
            }
            return RedirectToAction("Index");
        }

        if (!ModelState.IsValid)
        {
            foreach (var obj in ModelState.Values)
            {
                foreach (var error in obj.Errors)
                {
                    if (!string.IsNullOrEmpty(error.ErrorMessage))
                        System.Diagnostics.Debug.WriteLine("ERROR WHY = " + error.ErrorMessage);
                }
            }
        }

        return View(employeView);
    }

最后,我的Edit.cshtml(你猜对了 - 节食......)

<div class="form-group">
        @Html.LabelFor(model => model.AllTelephoneCellulaires, "Téléphones cellulaires", htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">               
            @Html.ListBoxFor(m => m.SelectedTelephoneCellulaires, Model.AllTelephoneCellulaires)
        </div>
    </div>

这两个先例的答案都解决了“Model.AllTelephoneCellulaires”会导致错误的事实,而不是“m.SelectedTelephoneCellulaires”

最有趣的是,我前段时间能够毫无问题地编辑一名员工,但当我尝试编辑另一个(两者都没有触及'TelephoneCellulaire'输入)时,砰!这出现了错误。

我只是不明白为什么会收到此错误?为什么我的SelectedThing需要是“SelectListItem”类型?我怎么解决它?如果有人能够帮助我,我将永远对你有所帮助。现在,我隐藏在桌子底下哭泣,用拇指吮吸胎儿位置......

1 个答案:

答案 0 :(得分:0)

从您提供的代码中,我非常肯定您收到此错误,因为您没有将有效的SelectListItem集合传递给ListBoxFor帮助程序方法。

我认为Model.AllTelephoneCellulaires目前正在返回 NULL ,它应该是有效的集合。一种解决方案是将其初始化为GET操作方法或视图模型类构造函数中的空列表。

public partial class EmployeVM
{
    // Your other properties goes here.

    public IEnumerable<SelectListItem> AllTelephoneCellulaires { get; set; }
    public EmployeVM()
    {
        AllTelephoneCellulaires = new List<SelectListItem>();
    }
}