我正在尝试在用户与生成的令牌一起注册时发送确认电子邮件。令牌没关系。但是在发送电子邮件时,我收到了这个错误:
System.NotSupportedException: Store does not implement IUserEmailStore<TUser>.
我在Register方法的AccountController中的代码如下所示:它是导致错误的SendEmailAsync()方法:
if (result.Succeeded)
{
var code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking this link: <a href=\"" + callbackUrl + "\">link</a>");
ViewBag.Link = callbackUrl;
return View("DisplayEmail");
}
在我的IdentityConfig.cs文件中,我有一个类:
public class ApplicationUserManager : UserManager<ApplicationUser>
{
public ApplicationUserManager(IUserStore<ApplicationUser> store)
: base(store)
{
}
}
同样在我的IdentityConfig.cs文件中,我有另一个类:
public class EmailService : IIdentityMessageService
{
public Task SendAsync(IdentityMessage message)
{
// Plug in your email service here to send an email.
SmtpClient client = new SmtpClient();
return client.SendMailAsync(ConfigurationManager.AppSettings["TranscriptEmailAddr"],
message.Destination,
message.Subject,
message.Body);
}
}
请协助。
答案 0 :(得分:2)
我刚刚发现我安装了Microsoft.AspNet.Identity.EntityFramework版本1.0.0,但我需要2.0.0版本。我通过输入以下命令通过Package Manager控制台安装它:
Install-Package Microsoft.AspNet.Identity.EntityFramework -Version 2.2.1
在此更高版本中,UserStore实现了具有新电子邮件方法的IUserEmailStore。
答案 1 :(得分:1)
在您的模型中或代码中的某个位置,您必须是UserStore类(除非您使用类似EntityFrameworkIdentity的框架)。
尝试通过“UserStore”查找整个解决方案,您会发现必须在其上实现此接口。
像:
public class UserStore : IUserStore<UserIdentity>, IUserPasswordStore<UserIdentity>, IUserEmailStore<UserIdentity>{
}