diff --git a/Readme.md b/Readme.md index 0701103..115556e 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,7 @@ # ![RavenDB logo](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/RavenDB.Identity/nuget-icon.png?raw=true) 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(); // 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 ...