AspNetCore.Identity.MongoDbCore
AspNetCore.Identity.MongoDbCore copied to clipboard
MongoUserStore uses wrong Context in UpdateAsync?
I ran into issues using the update command. Tracking this down to MongoUserStore.UpdateAsync(...) I found that
var collection = MongoRepository.Context.GetCollection<TUser>();
gives me an exception (Property not defined). Changing this to
var collection = Context.GetCollection<TUser>();
fixed the problem in my envrionment.