Chau
Chau

Reputation: 5570

Should I use aspnetdb for other stuff than users, roles and such?

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

Answers (1)

Jan Jongboom
Jan Jongboom

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

Related Questions