Following up this post, I have a question to ask.
If I create the class:
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext(): base("DefaultConnection")
{
...
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
...
}
}
That means I have to add all my business logic model domain classes into that DbContext
or it is possible to add a second one?