Membership systems for MVC4 that support RavenDB
- by brad oyler
I create a lot of quick "proof of concept" MVC apps and I actually found the SimpleMembership provider that shipped with the MVC4 templates to be very handy since it gets me up and running with user registration & OAuth in a matter of minutes.
But...I've started to use RavenDb (on RavenHQ for a lot for my projects). So, I starting trying to implement my own "custom membership provider" based on the ExtendedMembershipProvider and while doing that I realized that didn't make much sense.
I later stumbled upon 2 interesting projects that try to solve this exact problem:
WorldDomination.Web.Auth: https://github.com/PureKrome/WorldDomination.Web.Authentication
MemFlex: https://github.com/OdeToCode/Memflex
Both are pretty interesting recent efforts and was wondering if these are the only ones being built right now. I'm essentially looking for nuget pkg that I can drop into a MVC4 app, connect to my RavenDb and be done. I'm willing to build this thing but don't want to duplicate any efforts that are already in motion.
Thx!