So I was working on a DropDown list and it works, but it has many duplicate emails, I just want to see distinct emails... So I tried doing .Distinct() in the model class, but that still gave me duplicates..
Model Class:
 public string One_Manager_Email{ get; set; }
 public List<Hello> getManagers()
        {
            var que = (from wr in db.View
                       select new Hello
                       {
                           O_Manager_Email= wr.One_Manager_Email
                       }).Distinct().ToList();
            return que;
        }
Controller Class: (This is probably where the problem is happening)
    public ActionResult Index()
        {
            test = new Hello();
            ViewBag.Managers = new SelectList(test.getManagers(), "", "O_Manager_Email");
            return View(test.getStuff());
         }
View Class:
<div>
    @Html.DropDownList("Managers", ViewBag.Managers as SelectList)
</div>
Any help would be great, thank you!
 
     
     
    