diff --git a/MyMojo.AspNet.Identity.MongoDb/UserStore.cs b/MyMojo.AspNet.Identity.MongoDb/UserStore.cs index a4c1786..b25a3b0 100644 --- a/MyMojo.AspNet.Identity.MongoDb/UserStore.cs +++ b/MyMojo.AspNet.Identity.MongoDb/UserStore.cs @@ -246,8 +246,8 @@ public UserStore(TContext context, IDbStoreOptions options, IdentityErrorDescrib /// public IdentityErrorDescriber ErrorDescriber { get; set; } - private IMongoCollection RolesCollection { get { return Context.GetCollection(Options.UserCollection); } } - private IMongoCollection UsersCollection { get { return Context.GetCollection(Options.RoleCollection); } } + private IMongoCollection RolesCollection { get { return Context.GetCollection(Options.RoleCollection); } } + private IMongoCollection UsersCollection { get { return Context.GetCollection(Options.UserCollection); } } /// /// Creates a new entity to represent a user role.