I am trying to upgrade an old asp.net application (and not a database) to an MVC 5 application. I decided to use individual account authentication and cannot find a way to decouple the EF requirements. Not sure if this is possible, but how can I use an ASP.NET identifier without EF overhead?
What do everyone else use?
You must provide your own implementation of the interface IUserStore<TApplicationUser>. Then update the created default constructor for AccountControllerto use your own implementation instead of the standard EF.
IUserStore<TApplicationUser>
AccountController