- public class ApplicationDbContext : IdentityDbContext
- {
- public ApplicationDbContext(): base("DefaultConnection")
- {
- }
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- base.OnModelCreating(modelBuilder);
- modelBuilder.Entity
().ToTable("MyUsers"); - }
- }
what the above line is doing?
thanks
Srikant MaruwadaPosted Jan 5, 2018, 5:41 AM
Tridip BhattacharjeePosted Jan 5, 2018, 9:36 AM
Karthik ElumalaiPosted Dec 24, 2017, 12:38 PM
Tridip BhattacharjeePosted Dec 22, 2017, 1:01 PM
Ramesh PalanivelPosted Dec 22, 2017, 3:15 AM