I would like to add a realName
field in addition to the username and email address.
In the past, I created a new table that includes the username
and realName
columns when a user logs in. However, I would like to know if it is possible to extend the standard asp.net authentication destination table or user table (or any other table to add this) instead of creating a new table for this information.
Question: How to add a new column to authentication tables?
source share