I have created a simple three layer solution that contains an MVC web application project, a service layer class library project and a data layer entity framework class library project.
However the authentication/identity framework by default bypasses the service layer and data layer. Does anyone have a simple project example where this has all been setup so only my data layer talks to the database and uses entity framework. I am happy to create a custom user store however I am getting a bit lost trying to stitch everything together.
Help will be greatly appreciated. Don't mind if it's a C# or VB.Net example.