I am working on a Asp.Net Core 2.0 project and i want to seed AspnetUser, AspNetRoles and AspNetUserRoles tables. I create a class to seed database like this:
public class SeedData
{
public SeedData()
{
}
public static async Task Seeding(UserManager<ApplicationUser> userManager, RoleManager<ApplicationRole> roleManager, ApplicationDbContext context)
{
if (!context.Roles.Any())
{
context.Roles.AddRange(
new ApplicationRole
{
Id = "b562e963-6e7e-4f41-8229-4390b1257hg6",
Description = "This Is Admin User",
Name = "Admin",
NormalizedName = "ADMIN"
});
context.SaveChanges();
}
if (!context.Users.Any())
{
ApplicationUser user = new ApplicationUser
{
FirstName = "MyName",
LastName = "MyFamily",
PhoneNumber = "9998885554",
UserName = "saedbfd",
Email = "[email protected]",
gender = 1
};
IdentityResult result = await userManager.CreateAsync(user, "123aA@");
if (result.Succeeded)
{
ApplicationRole approle = await roleManager.FindByIdAsync("b562e963-6e7e-4f41-8229-4390b1257hg6");
if (approle != null)
{
await userManager.AddToRoleAsync(user, "Admin");
}
}
}
}
}
Above code is my seed class that insert data in 3 tables : AspNetUsers,AspNetRolse and AspNetUserRoles
ApplicationRole Model :
public class ApplicationRole : IdentityRole
{
public string Description { get; set; }
}
ApplicationUser Model :
public class ApplicationUser : IdentityUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
public byte gender { get; set; }
}
And Finally this is my Program.cs Class:
public class Program
{
public static void Main(string[] args)
{
var host = BuildWebHost(args);
using (var scope = host.Services.CreateScope())
{
var services = scope.ServiceProvider;
try
{
var userManager = services.GetRequiredService<UserManager<ApplicationUser>>();
var roleManager = services.GetRequiredService<RoleManager<ApplicationRole>>();
var context = services.GetRequiredService<ApplicationDbContext>();
SeedData.Seeding(userManager,roleManager,context);//<---Do your seeding here
}
catch (Exception ex)
{
var logger = services.GetRequiredService<ILogger<Program>>();
logger.LogError(ex, "An error occurred while seeding the database.");
}
}
host.Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build();
}
And i add this code to configure method in startup.cs:
using (var serviceScope = app.ApplicationServices.GetService<IServiceScopeFactory>().CreateScope())
{
var context = serviceScope.ServiceProvider.GetRequiredService<ApplicationDbContext>();
context.Database.Migrate();
}
Everithing is good and after run application database create automatically and all tables created and insert recodes in AspNetUsers and AspNetRoles but there is a problem. The problem is not inserted any rows in AspNetUserRoles in seed class.
What's wrong with my code?
I could solve my problem by changing in SeedData class
public class SeedData
{
public SeedData()
{
}
public static async Task Seeding(UserManager<ApplicationUser> userManager, RoleManager<ApplicationRole> roleManager, ApplicationDbContext context)
{
if (!context.Roles.Any())
{
context.Roles.AddRange(
new ApplicationRole
{
Id = "b562e963-6e7e-4f41-8229-4390b1257hg6",
Description = "This Is AdminUser",
Name = "Admin",
NormalizedName = "ADMIN"
});
context.SaveChanges();
}
if (!context.Users.Any())
{
ApplicationUser user = new ApplicationUser
{
FirstName = "MyFirstName",
LastName = "MyLastName",
PhoneNumber = "9998885554",
UserName = "saedbfd",
NormalizedUserName = "SAEDBFD",
Email = "[email protected]",
NormalizedEmail="[email protected]",
gender = 1,
PasswordHash = "AQAAAAEAACcQAAAAEH9MTIiZG90QJrMLt62Zd4Z8O5o5MaeQYYc/53e2GbawhGcx2JNUSmF0pCz9H1AnoA==",
LockoutEnabled = true,
SecurityStamp = "aea97aa5-8fb4-40f2-ba33-1cb3fcd54720"
};
context.Users.Add(user);
context.SaveChanges();
IdentityUserRole<string> ur = new IdentityUserRole<string>();
ur.RoleId = "b562e963-6e7e-4f41-8229-4390b1257hg6";
ur.UserId = user.Id;
context.UserRoles.Add(ur);
context.SaveChanges();
}
}
all data inserted correctly in database and everything is ok.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With