System.MissingMethodException:找不到方法:'Void Microsoft.AspNetCore.Identity.DataProtectorTokenProvider

时间:2019-11-21 11:17:05

标签: c# asp.net-core-3.0 .net-core-3.0

在发布了DI Registration service type .net core 3.0的同一项目中仍然存在。现在,当解决此问题时,我得到了新的错误。 现在我的代码如下:

    services.AddDbContext<ApplicationIdentityDbContext>(options =>
        options.UseSqlServer(configuration.GetConnectionString("Default")));

    services.AddIdentityCore<ApplicationUser>(options =>
        {
            options.Password.RequireDigit = false;
            options.Password.RequireLowercase = false;
            options.Password.RequireNonAlphanumeric = false;
            options.Password.RequireUppercase = false;
            options.Password.RequiredLength = 4;

            options.SignIn.RequireConfirmedEmail = true;
            options.Tokens.ProviderMap.Add("CustomEmailConfirmation",
                new TokenProviderDescriptor(
                    typeof(CustomEmailConfirmationTokenProvider<IdentityUser>)));

            options.Tokens.EmailConfirmationTokenProvider = "CustomEmailConfirmation";

        })
        .AddEntityFrameworkStores<ApplicationIdentityDbContext>();

    services.AddTransient(o =>
    {
        var service = new CustomEmailConfirmationTokenProvider<IdentityUser>(o.GetService<IDataProtectionProvider>(), o.GetService<IOptions<DataProtectionTokenProviderOptions>>(), o.GetService<ILogger<DataProtectorTokenProvider<IdentityUser>>>());

        return service;
    });

错误是:

  

System.MissingMethodException:找不到方法:'Void   Microsoft.AspNetCore.Identity.DataProtectorTokenProvider 1..ctor(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider, Microsoft.Extensions.Options.IOptions 1)'。

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,问题与软件包本身有关。

基本上,问题在于许多Microsoft.AspNetCore.*软件包现在已移至Microsoft.AspNetCore.App框架,因此您删除了Microsoft.AspNetCore.Identity引用并将其添加到您的项目中:

<ItemGroup>
    <FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

我注意到我的构造函数(与您的构造函数相同)缺少附加参数ILogger<DataProtectorTokenProvider<TUser>>,您可以在此link.的.NET Core 3. *版本中看到此参数。