13

Asp.Net MVC 4 Internet Application uses SimpleMembership. When you create a new MVC project on Visual Studio 2013 Preview, I think MVC 5 uses the new one. Do you know anything about it??

SimpleMembership;

enter image description here

A membership which I don't know the name for MVC 5;

enter image description here

yusuf
  • 1,233
  • 1
  • 15
  • 29
  • It seems, to me, the same as MVC 4 SimpleMembership tables. Also I don't see nothing new on this argument in the [release notes](http://www.asp.net/vnext/overview/latest/release-notes) of the new version. – Daniele Aug 17 '13 at 16:18
  • I changed my question.. You can see SimpleMembership tables. I think all tables are different.. – yusuf Aug 18 '13 at 06:33

1 Answers1

11

I was looking for this in files and I found IdentityConfig.cs file..

It is ASP.NET Identity and ASP.NET Identity is the new membership system for building ASP.NET web applications. ASP.NET Identity allows you to add login features to your application and makes it easy to customize data about the logged in user.

// For more information on ASP.NET Identity, visit http://go.microsoft.com/fwlink/?LinkId=301863

yusuf
  • 1,233
  • 1
  • 15
  • 29