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

前端 未结 5 858
失恋的感觉
失恋的感觉 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:35

    I think it is better off using it for supplementary data that is not critical to the user that is only normally important when that user is logging in anyway. Think data that would not break anything important if it was all wiped.

    of course thats personal preference but others have raised some other important issues.

    Also very useful considering it can be used for an unauthenticated user whose profile is maintained with an anonymous cookie.

提交回复
热议问题