Anyone had success creating a User and Role entities and set up a normal custom implementation of .net membership & role providers?
Don't think this is SharpLite related, but here's what I did.
* Create a default SharpLite Project
* Deleted the web project, and replaced with a Asp.Net MVC 4 project. Set necessary stuff in Global.asax and web.config to get it working.
* Changed all projects to .Net 4.5 as opposed to .Net 4.0
* Everything still fine.
* Create a User and Role Entities, get it to work.
* Create implemenations of MembershipProvider and RoleProvider and configured my web.config to use this.
Now my code seems to go into the Role Provider and create a Role for instance.
But when I do a Membership.CreateUser, my code does not step into my Membership Provider.
No idea.