I have started to make a webapp with asp.net mvc2. I am using the built in users database that is available by default. I want to add tags and more stuff that will need to be stored in the database.
At the moment under data connections, I have ASPNETDB.mdf which has it’s tables and all its other information.
If I want to make a tags table, do I create a new data connection or should I add it to that database?
You could have multiple databases but it would make it difficult to perform queries. A single database could have many tables and it is the recommended approach.