处理请求时发生未处理的异常。 ArgumentException:不支持关键字:'service'

An unhandled exception occurred while processing the request. ArgumentException: Keyword not supported: 'service'

我有一个 asp.net 核心 MVC 应用程序,但在构建脚手架后出现错误。

我的连接字符串如下appsettings.json

"ConnectionStrings": {
    "MyNewDatabase": "data source=.; initial catalog=MyNewDb; integrated security=true"
  }

而我遇到的错误:

> ArgumentException: Keyword not supported: 'service'.

我在Startup.cs中把它放到注释行,因为如果我不把它放到注释行,这里会报错

> app.UseMvc(routes => {
>                 routes.MapRoute(
>                 name: "default",
>                 template: "{Controller=Home}/{action=Index}");
>             });

我在Startup.cs

中更改了以下代码
> app.UseEndpoints(endpoints =>
>             {
>                 endpoints.MapControllerRoute(
>                     name: "default",
>                     pattern: "{controller=Home}/{action=Index}/{id?}");
>             });

并且我在AppDbContext.cs

中添加了以下代码
optionsBuilder.UseSqlServer(@"data source=.; initial catalog=MyNewDb; integrated security=true");