public EmployeeDTO AuthenticateEmployee(string username,string password) { try { var userLogin = UnitOfWork.UserLoginRepository.Get(x => x.UserName == username).FirstOrDefault(); if (userLogin == null) return null; else { var userStore = new UserStore<IdentityUser>(); var userManager = new UserManager<IdentityUser>(userStore); // this throws an error. var user = userManager.Find("username","password"); } } }
结果有误:
Could not load type ‘System.ComponentModel.DataAnnotations.Schema.IndexAttribute’ from assembly ‘EntityFramework,Version=6.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089’.
我正在使用EF 6.0,Microsoft.AspNet.Identity.EntityFramework Ver 2.0.
我无法使用EF执行任何操作使用Identity我有什么需要做的,我的EDMX在另一个类库中.我认为这是一个DLL问题.
请帮我使用EF的身份.
我经历了Msdn
任何帮助表示赞赏.