When the Seedmethod runs, records/objects are added to my database.
Seed
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();
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.