Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I am building an MVC 5 application and the build in membership function in a basic MVC 5 project is MVC5 Identity. I am familiar to MVC 4 simple membership, but i want to use the new functions of MVC 5. The identity seems a little lean and you have to extend everything. Can you tell me which one is better for application that needs to handle multiple logins - 1k+ and open authentication ?

like image 950
user3959430 Avatar asked Nov 23 '25 19:11

user3959430


1 Answers

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

Currently, ASP.Net Identity reaches to Version 2 already, so we can assume that SimpleMembership Provider is deprecated.

Unfortunately, Identity is not backward compatible with SimpleMembership Provider.

If you are implementing new Application with MVC 5, you definitely want to use new Identity 2.

like image 101
Win Avatar answered Nov 25 '25 11:11

Win