I am having a hard time figuring out how to update/modify a user in my AspNetUsers table using the Entity Framework and Identity. I am getting an error that says:
"The entity type ManagerUserViewModel is not part of the model for the current context."
This make sense, because I do not mention the ManagerUserViewModel in the ApplicationDbContext which I am using. But should I create a new Context similar to ApplicationDBContext and use that one? Or do I somehow add my ManagerUserViewModel to the ApplicationDBContext?
Here is my controller method that is doing the updating when 'Save' is clicked:
public ActionResult EditUser([Bind(Include = "UserID, Email, UserName, Roles, RoleID, RoleName")] ManagerUserViewModel model)
{
if (ModelState.IsValid)
{
using (var context = new ApplicationDbContext())
{
var store = new UserStore<ApplicationUser>(context);
var manager = new UserManager<ApplicationUser>(store);
ApplicationUser user = new ApplicationUser();
user.Email = model.Email;
user.UserName = model.UserName;
if (model.UserID == "")
{
// Since it didn't have a UserID, we assume this is a new User
Task.WaitAny(manager.CreateAsync(user, "Password12"));
}
else
{
// Since EF doesn't know about this product (it was instantiated by
// the ModelBinder and not EF itself, we need to tell EF that the
// object exists and that it is a modified copy of an existing row
context.Entry(model).State = EntityState.Modified;
Task.WaitAny(manager.UpdateAsync(user));
}
if (model.RoleName != null && model.RoleName != "")
{
Task.WaitAny(manager.AddToRoleAsync(model.UserID, model.RoleName));
}
Task.WaitAny(context.SaveChangesAsync());
return RedirectToAction("ControlPanel");
}
}
return View(model);
}
And here is my ManagerUserViewModel:
public class ManagerUserViewModel
{
public String UserID { get; set; }
public String Email { get; set; }
public String UserName { get; set; }
[Display(Name = "Role(s)")]
public IEnumerable<String> Roles { get; set; }
public String RoleID { get; set; }
public String RoleName { get; set; }
public IEnumerable<SelectListItem> RoleList { get; set; }
public static IEnumerable<SelectListItem> getRoles(string id = "")
{
using (var db = new ApplicationDbContext())
{
List<SelectListItem> list = new List<SelectListItem>();
foreach (var role in db.Roles)
{
SelectListItem sli = new SelectListItem { Value = role.Name, Text = role.Name};
list.Add(sli);
}
return list;
}
}
public static String getRoleID(string role)
{
using (var db = new IdentityDbContext())
{
string roleID = db.Roles.Where(r => r.Name == role).First().Id;
return roleID;
}
}
}
And here is my ApplicationDBContext:
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema: false)
{
}
public DbSet<RegisterViewModel> RegisterUsers { get; set; }
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
}
Let me know if any other code is needed.
Edit: Based on Steve's comment, I tried creating a new Context.
public class ManageUserDbContext : IdentityDbContext<ApplicationUser>
{
public ManageUserDbContext()
: base("DefaultConnection", throwIfV1Schema: false)
{
}
public DbSet<ManagerUserViewModel> Users { get; set; }
public static ManageUserDbContext Create()
{
return new ManageUserDbContext();
}
}
And then in the Controller method, I switched my using context to new ManageUserDbContext(). Now it does not error out, but it still does not update the user.
IdentityDbContext. I edited my post above.