How does one ‘properly’ delete a user from the system in ASP.NET MVC?
I have a Customers controller which ties into the default Account controller well for the most part but when it comes to deleting them, deleting from the Customers table isn’t enough as the user name is now effectively “reserved”.
Solution:
System.Web.Security.Membership.DeleteUser(username);