InvalidOperationException: Unable to resolve service for type 'System.String' while attempting to activate
ASP.NET Core의 Startup.cs 파일에서
종속성을 해결하는 코드에
리포지토리 클래스에 생성자로 데이터베이스 연결 문자열이 지정되었는지 확인 필요
// <Notifications>
// 종속성 해결: IMyNotificationRepository의 인스턴스를 MyNotificationRepository로 생성
services.AddSingleton<IMyNotificationRepository>(new MyNotificationRepository(Configuration["ConnectionString"]));
// </Notifications>