Hello everyone.
I try to never delete the actual records from the important tables in my database, instead mark them as Deleted by setting corresponding field to True. But in case of a membership this approach will prevent any future user of reusing the username of the "deleted" user. Username won't be a problem, but what if the "deleted" user decides to sign up again and tries to use the same email? Since the emails are also unique in asp.net membership it will throw an error that the email is already in use (by the deleted account). What is the best way out of this?
Thanks in advance.