I am working in a new MVC5 application that I built specifically to test this.
I have two db contexts. The configuration.cs for the ApplicationDbContext is as follows:
using FB.DOMAIN.Authentication;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using System.Data.Entity.Migrations;
namespace FB.DAL.Migrations.ApplicationDbContext
{
    internal sealed class Configuration : DbMigrationsConfiguration<DataContexts.ApplicationDbContext>
    {
        public Configuration()
        {
            AutomaticMigrationsEnabled = false;
            MigrationsDirectory = @"Migrations\ApplicationDbContext";
        }
        protected override void Seed(DataContexts.ApplicationDbContext context)
        {
            var roleManager = new RoleManager<IdentityRole>(new RoleStore<IdentityRole>(context));
            var userManager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(context));
            if (!roleManager.RoleExists("Admin"))
            {
                roleManager.Create(new IdentityRole("Admin"));
            }
            var user = new ApplicationUser { UserName = "james@world.com" };
            if (userManager.FindByName("james@world.com") != null) return;
            var result = userManager.Create(user, "Password123!");
            if (result.Succeeded)
            {
                userManager.AddToRole(user.Id, "Admin");
            }
        }
    }
}
Shouldn't the above code seed my database with a user? Sadly it doesn't! When I query the AspNetUsers table, it is blank!
What am I doing wrong? :(
 
    