After lots of read about ASP.Net Identity, I'm still confused about some sort of things that newly added to ASP.Net authentication system.
- How should I use ASP.Net Identity if I have already a designed database with its User management tables? for example I want to map
AspNetUserstable to my own table namedUserAccounts. - How should I mix this new system with existing ASP.Net MVC application?
- What if I don't want to use code-first (Identity uses code-first)?
Any advice will be helpful. Thanks in Advance.