When the Seed
method runs, records/objects are added to my database.
Every object is added as it should till I try add users to my application(at the bo
You have to get the current manager from the context:
var manager = HttpContext.Current.GetOwinContext().GetUserManager<ApplicationUserManager>();
Be sure to inlude the namespace for this:
using Microsoft.AspNet.Identity.Owin;
Using this manager instance, you should be able to create a user correctly.