In Visual-Studio 2013, when creating an ASP.NET project, it generates a file IdentityModels.cs that contains a class ApplicationDbContext
, that inherits from IdentityDbContext<ApplicationUser>
, which eventually inherits from DbContext
.
Should I keep this context only for account-related entities, and created a separate context for all the other entities in the application or should I mix it.
Any security issue or reason not to include all the entities of my entire application in one context?