gpt4 book ai didi

c# - 我将我的 .NET CORE 项目从 2.1 更新到 3.1,但我在类 Startup 中有一些错误

转载 作者:行者123 更新时间:2023-12-03 19:42:48 27 4
gpt4 key购买 nike

我刚刚更新了我的 .NET CORE 版本。我已经更新了所有使用,但是在添加默认标识时,我仍然在 satrtup 类中的 ConfigureServices 方法中出现错误。它只是给我一个错误,说“‘IServiceCollection’不包含‘AddDefaultIdentity’的定义,也没有可访问的扩展方法‘AddDefaultIdentity...’”。这是方法:

public void ConfigureServices(IServiceCollection services)
{
services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
options.CheckConsentNeeded = context => true;
options.MinimumSameSitePolicy = SameSiteMode.None;
});

services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(
Configuration.GetConnectionString("DefaultConnection")));

//ERROR
services.AddDefaultIdentity<IdentityUser>()
.AddEntityFrameworkStores<ApplicationDbContext>();

services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_3_0);

//SIGNAL R
services.AddSignalR();
}

我在 Configure 方法中也有错误。
  public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
//ERROR
app.UseDatabaseErrorPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
//MORE CODE
}

我应该怎么做才能解决这个错误?

最佳答案

这两个扩展方法已移入单独的 NuGet 包中,必须在 ASP.NET Core 3.0 及更高版本中显式引用:


方法
包裹

AddDefaultIdentity Microsoft.AspNetCore.Identity.UI
UseDatabaseErrorPage Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore

关于c# - 我将我的 .NET CORE 项目从 2.1 更新到 3.1,但我在类 Startup 中有一些错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60659122/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com