你好,
我在UserValidator中查看ASP.NET标识源。我想为我自己的项目重写它,以便能够更改错误消息。所以我把那个类复制到我的项目中。当我尝试使用它时-我得到一个错误-'Microsoft.AspNet.Identity.UserManager<TUser,TKey>' does not contain a definition for 'GetEmailStore' and no extension method 'GetEmailStore' accepting a first argument of type 'Microsoft.AspNet.Identity.UserManager<TUser,TKey>' could be found (are you missing a using directive or an assembly reference?)
在这条线路
var email = await Manager.GetEmailStore().GetEmailAsync(user).ConfigureAwait(false);
我的问题是,这怎么能在AspNet.Identity框架中工作,但在我的项目中却不能?看起来Manager并没有实现IUserEmailStore
。
我测试的都是VS2013 中的默认MVC模板
我终于找到了答案(经过大量搜索)。
如果您看到UserManager的源代码,则GetEmailStore()
方法确实存在,但它是内部的。看看:
internal IUserEmailStore<TUser, TKey> GetEmailStore()
{
var cast = Store as IUserEmailStore<TUser, TKey>;
if (cast == null)
{
throw new NotSupportedException(Resources.StoreNotIUserEmailStore);
}
return cast;
}
因此,它只存在于自己的Identity程序集的文件中,这就是为什么它在那里工作而不在代码中工作的原因。
此外,您可以获得如下相同的结果:
var email = await Manager.GetEmailAsync(user.Id).ConfigureAwait(false);
单击此处查看UserManager的源代码