Decoupling ASP.NET MVC 5 Identity to allow implementing a layered application
Here is a quick draft of what I’d try…I would create these layers: Contoso.Core (Class Library) Contoso.Data (Class Library) Contoso.Service (Class Library) Contoso.Web.Framework (Class Library) Contoso.Web (ASP.NET MVC 5.0) Contoso.Core: This layer holds all my entities/classes representing my database TABLES. So for example, I would have a: User.cs class. Product.cs class ProductDetail.cs class Etc.. Some … Read more