What is the difference between MVC5 ID and MVC4 simple membership?

I am building an MVC 5 application and the build function in the MVC 5 base project membership is the MVC5 id. I'm familiar with MVC 4 simple membership, but I want to use the new MVC 5 features. Identity seems a bit thin and you need to extend everything. Can you tell me which one is better for an application that needs to handle multiple logins - 1k + and open authentication?

+3


source to share


1 answer


Can you tell me which one is better for an application that needs to handle multiple 1k + logins and open authentication?

ASP.Net Identity is currently down to Version 2 , so we can assume the SimpleMembership Provider is deprecated.



Unfortunately Identity is not backward compatible with the SimpleMembership Provider .

If you are using a new app with MVC 5, you definitely want to use the new Identity 2 .

+2


source







All Articles