RavenDB.AspNet.Identity
2.0.0
See the version list below for details.
dotnet add package RavenDB.AspNet.Identity --version 2.0.0
NuGet\Install-Package RavenDB.AspNet.Identity -Version 2.0.0
<PackageReference Include="RavenDB.AspNet.Identity" Version="2.0.0" />
paket add RavenDB.AspNet.Identity --version 2.0.0
#r "nuget: RavenDB.AspNet.Identity, 2.0.0"
// Install RavenDB.AspNet.Identity as a Cake Addin #addin nuget:?package=RavenDB.AspNet.Identity&version=2.0.0 // Install RavenDB.AspNet.Identity as a Cake Tool #tool nuget:?package=RavenDB.AspNet.Identity&version=2.0.0
RavenDB.AspNet.Identity
RavenDB identity provider for ASP.NET MVC 5+ and Web API 2+. (Looking for .NET Core identity provider for RavenDB? Check out our sister project, RavenDB.Identity.)
We're on NuGet as RavenDB.AspNet.Identity.
Instructions
These instructions assume you know how to set up RavenDB within an MVC application.
Create a new ASP.NET MVC 5 project, choosing the Individual User Accounts authentication type.
Remove the Entity Framework packages and replace with RavenDB Identity:
Uninstall-Package Microsoft.AspNet.Identity.EntityFramework Uninstall-Package EntityFramework Install-Package RavenDB.AspNet.Identity
In ~/Models/IdentityModels.cs:
- Remove the namespace: Microsoft.AspNet.Identity.EntityFramework
- Add the namespace: Raven.AspNet.Identity
- Remove the entire ApplicationDbContext class. You don't need that!
In ~/App_Start/IdentityConfig.cs
- Update the ApplicationUserManager.Create method to get the Raven document session.
public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context) { // Update this line to pass in the Raven document session: var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context.Get<IAsyncDocumentSession>())); ... }
In ~/App_Start/Startup.Auth.cs:
- Remove the Entity framework context and add a RavenDB context:
// Old: app.CreatePerOwinContext(ApplicationDbContext.Create); // New. The raven variable is your Raven DocumentStore singleton. app.CreatePerOwinContext(() => raven.OpenAsyncSession());
Add a RavenController base class.
- This will save changes on the document session if the controller action executed successfully.
- You can view the RavenController.cs sample.
Make AccountController.cs inherit from RavenController
public class AccountController : RavenController { ... }
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Microsoft.AspNet.Identity.Core (>= 2.2.1)
- Microsoft.CSharp (>= 4.4.1)
- Newtonsoft.Json (>= 11.0.1)
- RavenDB.Client (>= 4.0.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on RavenDB.AspNet.Identity:
Package | Downloads |
---|---|
BrickPile
BrickPile is a lightweight CMS built on RavenDB and ASP.NET MVC 5 |
GitHub repositories
This package is not used by any popular GitHub repositories.