When i click edit button. the drop down value is not coming but in ViewBag.DomainID
value is present but it is not displaying. it shows The specified cast from a materialized 'System.Int64' type to the 'System.Int32' type is not valid.
Controller:
[Authorize]
[MyExceptionHandler]
public ActionResult EditModules(int id)
{
EditDomain_Bind();
userType type = new userType();
var ModID = type.GetEditRoleModulesViews(id).Find(Emp => Emp.ModuleID == id);
int domainID = ModID.DomainID;
AccountContext db = new AccountContext();
string selected = (from sub in db.domain
where sub.DomainID == domainID
select sub.DomainName).First();
ViewBag.DomainID = new SelectList(db.domain, "DomainID", "DomainName", selected);
return View(ModID);
}
Cs.HTML:
<div class="col-lg-4">
<fieldset class="form-group">
<label class="form-label" for="exampleInput">Domain Name</label>
@Html.DropDownList("DomainID")
@Html.ValidationMessageFor(model => Model.DomainID, null, new { @style = "color: red" })
</fieldset>
</div>
Models:
public DbSet<Domain> domain { get; set; }
public class Domain
{
[Key]
public int DomainID { get; set; }
public string DomainName { get; set; }
}