Do most people use .NET's SqlMembershipProvider, SqlRoleProvider, and SqlProfileProvider?

前端 未结 7 2027
天命终不由人
天命终不由人 2021-02-04 15:05

Do most people use .NET\'s SqlMembershipProvider, SqlRoleProvider, and SqlProfileProvider when developing a site with membership capabilities?

Or do many people make the

相关标签:
7条回答
  • 2021-02-04 15:33

    We use everything except the Profile Provider. The Profile Provider is completly text based and does full text seearches - this becomes exceedingly slow as you user base gets larger. We have found it a much better solution to "role our own" profile section of the membership api database that is keyed to the userid in membership.

    0 讨论(0)
提交回复
热议问题