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

前端 未结 7 2033
天命终不由人
天命终不由人 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:13

    If you only need the basic user support (roles, profiles, etc.) then the default providers will work great.

    If you need more customized support (data storage in a database not supported by the default providers [like Oracle], provider on a database that already exists, a heavily customized schema) then you should roll your own providers.

    As for me, my current site only needed basic Roles support (and minimal Profiles support), so I went with the default providers.

提交回复
热议问题