I created an ASP.Net MVC 5, EF 6 project with individual accounts.
The database is automatically generated with 5 tables:
- AspNetRoles
- ASpNetUserClaim
- AspNetUserLogins
- AspNetUserRoles
- AspNetUsers
Is it good practice to put more tables? For example:
- Product
- Category
- Subcategories
- Order ...
Is this all in the same user database, is it a good practice or do you have to stay in a separate database?