Updated readme.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#  RavenDB.Identity #
|
||||
RavenDB identity provider for ASP.NET Core.
|
||||
|
||||
The simple and easy Identity provider for RavenDB and ASP.NET Core. Use Raven to store your users and logins.
|
||||
The simple and easy Identity provider for RavenDB and ASP.NET Core. Use Raven to store your users and logins. Uses RavenDB 4+
|
||||
|
||||
## Instructions ##
|
||||
1. In Startup.cs:
|
||||
@@ -11,8 +11,7 @@ public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
// Add RavenDB and identity.
|
||||
services
|
||||
.AddRavenDb(Configuration.GetConnectionString("RavenDbConnection")) // Create a RavenDB DocumentStore singleton.
|
||||
.AddRavenDbAsyncSession() // Create a RavenDB IAsyncDocumentSession for each request.
|
||||
.AddRavenDbAsyncSession(docStore) // Create a RavenDB IAsyncDocumentSession for each request. docStore is your IDocumentStore instance.
|
||||
.AddRavenDbIdentity<AppUser>(); // Use Raven for users and roles. AppUser is your class, a simple DTO to hold user data. See https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Models/AppUser.cs
|
||||
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user