How does one delete a user from the system in ASP.NET MVC? Is there any facility built in that I'm just not seeing?
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". I can't manually delete rows from the relevant tables used by AccountController (foreign key dependencies?) and it's not the kind of solution suitable for presenting a client with anyway.