Search code examples
asp.netasp.net-membership

How do people deal with asp.net membership/role/profile in real website?


I don't like asp.net profile provider store all profile info in one or two row in the database, but I want to use membership/profile API for authentication purpose.

Customize membership/role/profile provider requires big big upfront efforts, which may cause more mess later.

So how do people deal with that normally?


Solution

  • You don't have to use asp.net profiles to store additional information if you don't want to. Instead you can store it in a separate table and link it to aspnet_Users table like shown here: Storing additional information