From 11952065c51723ddd26aa3cc6b8bcfb53214c5ac Mon Sep 17 00:00:00 2001 From: Alexandre SPIESER Date: Sun, 22 Oct 2017 01:26:41 +0100 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 528ba31..7897a74 100644 --- a/README.md +++ b/README.md @@ -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 and MongoIdentityRole in a way similar to the IdentityUser and the IdentityRole in Microsoft.AspNetCore.Identity.