0
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 ...
This being all in the same user database, it will be good practice or it must be kept in a separate database?
Thank you for the reply!!
– user1364304