1. ホーム

リクエストの処理中に処理されない例外が発生した

2022-02-16 04:51:37

今、アプリケーションを実行すると、例外が発生する可能性が高いです。

An unhandled exception occurred while processing the request.

InvalidOperationException: Unable to resolve service for type 'ControllerDI.Interfaces.IDateTime' while attempting to activate 'ControllerDI. Controllers.HomeController'.
Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)

このエラーは、必要なパラメータが  Startup  クラスの  ConfigureServices  メソッドを使用して、サービスを設定します。以下のサービスを  ConfigureServices  メソッドを使用します。

 public void ConfigureServices(IServiceCollection services)
        { <未定義
           // アプリケーションサービスを追加します。
services.AddScoped<MessageService>() を実行します。
            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1) を実行します。
        }