Reputation: 5570
I'm pretty new into asp.net, and currently I have the need for storing various information in a database. Since I have used the standard Login control in asp.net, I already have the ASPNETDB database in my application.
My question is: Is it good practice to use this database for other things than user and role information?
Regards, Casper
Upvotes: 1
Views: 310
Reputation: 27323
Best practice would be to store the user/profile information in your normal SQL Database, therefore not using the ASPNETDB, but migrating all the tables and data to your application DB.
Upvotes: 1