'IdentityContext' could not be found (are you missing a using directive or an assembly reference)
问题 I am migrate the project https://github.com/attilah/AngularJSAuthentication to using mongodb driver verson 2 , and I am in the final step here: namespace AngularJSAuthentication.API { using AspNet.Identity.MongoDB; using Entities; using MongoDB.Driver; public class ApplicationIdentityContext : IdentityContext { public ApplicationIdentityContext(IMongoContext mongoContext) : this(mongoContext.Users, mongoContext.Roles) { } public ApplicationIdentityContext(IMongoCollection<User> users,