I am working on a MVC4 website and have been working to customize the out-of-the-box SimpleMembershipProvider and have a few questions that I wasn't able to track down in the documentation.
1) What kind of control can I have over the tables generated? For instance, is there anyway to prevent OAuth tables from being generated if you will never be using OAuth? Is it possible to simply have it work with a role field within the user table, rather than the default separate join tables?
2) Users will be authenticating via an external system. Is there anyway to override the Websecurity.Login(username, password) to simply be Webseurity.Login(username)?
Thanks in advance for any pointers or resources you can provide.