What is the purpose ApplicationDbContext Class in (under IdentityModels.cs file) ASP.NET MVC 5?

Assuming you’re talking about an asp.net-mvc-5 application: For the default templates, ApplicationDbContext is used for all the ASP.NET Identity database CRUD operations.

If you don’t know whats an Entity DBContext is, consider reading this guide.

Leave a Comment