User Authentication with MVC 5 without EF

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?

+3
source share
1 answer

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.

+3
source

All Articles