将项目更新为最近发布的ASP.NET 5 beta8后,我发现IServiceCollection不再包含ConfigureIdentityConfigureIdentityApplicationCookie的定义。

所以以前写的代码像

services.ConfigureIdentity(o =>
    {
        o.Password.RequireUppercase = false;
        o.Password.RequireNonLetterOrDigit = false;
    });

services.ConfigureIdentityApplicationCookie(o => o.LoginPath = "/Admin/Users/Login");


不能再编译了。

Google搜索没有结果,我想这是因为自beta8版本以来只有一天的时间。

有人找到解决方法吗?如何在beta8中配置身份选项?

最佳答案

Configure*方法已删除,并且Add*方法现在接受Action<TOptions>

services.AddIdentity<TUser, TRole>(o =>
{
    o.Password.RequireUppercase = false;
    o.Password.RequireNonLetterOrDigit = false;
    o.Cookies.ApplicationCookie.LoginPath = "/Admin/Users/Login";
});


不完全相同,但部分相关:https://github.com/aspnet/Announcements/issues/71

10-08 18:11