AspNetCore.Identity.MongoDbCore icon indicating copy to clipboard operation
AspNetCore.Identity.MongoDbCore copied to clipboard

A MongoDb UserStore and RoleStore adapter for Microsoft.AspNetCore.Identity 2.2. Allows you to use MongoDb instead of SQL server with Microsoft.AspNetCore.Identity 2.2. (not Identity 3.0)

Results 14 AspNetCore.Identity.MongoDbCore issues
Sort by recently updated
recently updated
newest added

Bumps [MongoDB.Driver](https://github.com/mongodb/mongo-csharp-driver) from 2.13.2 to 2.19.0. Release notes Sourced from MongoDB.Driver's releases. NET Driver Version 2.19.0 Release Notes .NET Driver Version 2.19.0 Release Notes This is the general availability release...

dependencies

Hello, Is there a recommended approach to use MongoDbCore with worker and console apps, where only singleton scope is supported?

When using Microsoft's Identity package it's possible to disable ApplicationUser properties by overriding the dbContext OnModelCreating method as follows: ``` protected override void OnModelCreating(DbModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity().Ignore(c => c.AccessFailedCount)...

I ran into issues using the update command. Tracking this down to MongoUserStore.UpdateAsync(...) I found that `var collection = MongoRepository.Context.GetCollection();` gives me an exception (Property not defined). Changing this to...