Update README.md

This commit is contained in:
Alexandre SPIESER
2017-10-22 01:26:41 +01:00
committed by GitHub
parent f62e03c80b
commit 11952065c5
+7
View File
@@ -1,9 +1,16 @@
# AspNetCore.Identity.MongoDbCore
A MongoDb UserStore and RoleStore adapter for Microsoft.AspNetCore.Identity 2.0.
Allows you to use MongoDb instead of SQL server with Microsoft.AspNetCore.Identity 2.0.
Covered by 737 integration tests and unit tests from the modified [Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test](https://github.com/aspnet/Identity/tree/b865d5878623077eeb715e600d75fa9c24dbb5a1/test/Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test) test suite.
Supports both `netstandard2.0` and `netcoreapp2.0`.
Available as a Nuget package : https://www.nuget.org/packages/AspNetCore.Identity.MongoDbCore/
`Install-Package AspNetCore.Identity.MongoDbCore -Version 1.0.4`
# Usage examples
Your user and role entities must inherit from MongoIdentityUser<Guid> and MongoIdentityRole<TKey> in a way similar to the IdentityUser<TKey> and the IdentityRole<TKey> in Microsoft.AspNetCore.Identity.