I am just starting a new project on ASP.NET MVC, and this will be the first project actually using this technology. When I created my new project with Visual Studio 2010, he created a bunch of tables with the aspnet_ prefix for my SQL server. Some of them relate to built-in user accounts and permission support.
Now I want to save certain information about my users. My question is: βIs it good practice to restructure the aspnet_ tables to meet my user account information needs?β
And I guess the answer is no. (Why exactly?), I intend to create my own table "Users". What is a good approach for connecting entries from the aspnet_Users table and my own user user table.
I want the ratio to be 1: 1, and the design in the database should be as transparent as possible in my C # code (I use linq for sql, if that matters). Also, I don't want to replicate usernames and passwords from aspnet_ tables to the table and save the data.
I am considering using a presentation to join them. Is that a good idea?
Thanks in advance!
EDIT: From the answer, I see that I cannot be clear enough about what I want. The question is not to use the default asp.net provider, but how to accept it, for my needs.
source share