ASP.NET built in user profile vs. old style user class/tables

前端 未结 5 838
失恋的感觉
失恋的感觉 2021-01-03 19:51

I am looking for guidance regarding the best practice around the use of the Profile feature in ASP.NET.

How do you decide what should be kept in the built-in user Pr

5条回答
  •  走了就别回头了
    2021-01-03 20:33

    In my experience its best to keep an the info in the profile to a bare minimum, only put the essentials in there that are directly needed for authentication. Other information such as addresses should be saved in your own database by your own application logic, this approach is more extensible and maintainable.

提交回复
热议问题