What would be the best way to extend the ASP.NET MVC 4 Internet Application such that the Register
ActionMethod
in the AccountController
saves a User object to my RavenDB instance? I would also like to Encrypt the password when storing it to the Database.
Asked
Active
Viewed 403 times
0

Geoff Appleford
- 18,538
- 4
- 62
- 85

Subby
- 5,370
- 15
- 70
- 125
1 Answers
0
There are a few example Membership Providers for RavenDB.
https://github.com/martijnboland/RavenDBMembership by Martijn Boland
https://github.com/wilby/RavenDBMembership - this is a fork of Martins project
https://github.com/bastervrugt/Raven.AspNetProviders
There are also quite a few SO threads on this subject. eg Membership systems for MVC4 that support RavenDB

Community
- 1
- 1

Geoff Appleford
- 18,538
- 4
- 62
- 85
-
I downloaded the project from the first link you gave. Could you further advice how to work with it? – Subby May 23 '13 at 18:45