В Переместите хранилище удостоверений ASP.NET в базу данных EF Sql. zoidbergi описал проблему, подобную той, которая испытывает меня, но на которую не ответил полностью. Я получаю ошибку выше при попытке перехода из встроенной базы данных .mdf в MySQL. Я использую методологию Database-First и успешно создал модель Entity из базы данных Mysql.
Независимо от того, воссоздаю ли идентификаторы данных asp.net, приложение захлопывает, как только пользовательский доступ обращается:
The entity type ApplicationUser is not part of the model for the current context.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: The entity type ApplicationUser is not part of the model for the current context.
Source Error:
Line 65: ' Create a local login before signing in the user
Line 66: Dim user = New ApplicationUser() With {.UserName = model.UserName}
**Line 67: Dim result = Await UserManager.CreateAsync(User, model.Password)**
Line 68: If result.Succeeded Then
Line 69: Await SignInAsync(User, isPersistent:=False)
Я указал ApplicationDBContext на мою модель DbContext:
Public Class ApplicationDbContext
Inherits IdentityDbContext(Of ApplicationUser)
Public Sub New()
MyBase.New("IMSEntities")
End Sub
End Class
Googling стремится найти людей, которые отказались от своих поставщиков безопасности и закодировали их - я бы хотел использовать стандартный, если это возможно. Расстроенный!