What is the best practice for maintain users? aspnet_Users or create new user table [closed]
Want to improve this question? Update the question so it can be answered with facts and citations by editi开发者_如何学运维ng this post.
Closed 4 years ago.
Improve this questionI installed the database
asp.net
Membership
but I want to ask what is best practice here should I use the aspnet_Users
table as a main table for Website user or should create new user table to store the website users login information and password ??
According to my understanding aspnet_Users tables are the easiest and best option if you already not having tables for user management
The generated aspnet_Users table gives you a quick out-of-the-box option, and you can also use it across multiple applications. I have used this before and it has served me well.
I have never used the aspnet_Users table even once in my entire career as a software developer, senior software developer and now present software architect. I think that pretty much sums this up.
To me using asp.net
membership
provider is a easier and safer way. And it contains in build method that can use. If we need to Implement a Custom Membership User it also possible.
精彩评论