Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: Server.DAL.IRepository`1[Server.Models.RegistrationCountByMonth] Lifetime: Transient ImplementationType: Server.DAL.GenericRepository`1[Server.Models.RegistrationCountByMonth]': Unable to resolve service for type 'Microsoft.EntityFrameworkCore.DbContext' while attempting to activate 'Server.DAL.GenericRepository`1[Server.Models.RegistrationCountByMonth]'.) (Error while validating the service descriptor 'ServiceType: Server.DAL.GenericRepository`1[Server.Models.RegistrationCountByMonth] Lifetime: Transient ImplementationType: Server.DAL.GenericRepository`1[Server.Models.RegistrationCountByMonth]': Unable to resolve service for type 'Microsoft.EntityFrameworkCore.DbContext' while attempting to activate 'Server.DAL.GenericRepository`1[Server.Models.RegistrationCountByMonth]'.)
Может у кого-то есть догадки ? Вроде все по гайду делаю
Лайфтаймы не совпадают, не выйдет добавить синглтон в транзиент и т.п
Как это ? Я хочу реализовать свою дженерик репозиторий. И он у меня и должен быть Transient. Я только что пробовал с singleton и все еще пишет тоже самое. ``` services.AddSingleton(typeof(IRepository<RegistrationCountByMonth>), typeof(GenericRepository<RegistrationCountByMonth>)); services.AddSingleton(typeof(GenericRepository<RegistrationCountByMonth>)); ``` что я делаю не так
Не совсем по вопросу, AddSingleton имеет перегрузки через дженерик типы, то есть AddSingleton<IRepository<RegistrationCountByMonth>, GenericRepository<RegistrationCountByMonth>)>
Есть предположение, что нужно регистровать через лямбду
Все та же ошибка. Что оно не может реализовать конструкцию этих сервисов. Наверное все же у меня где-то какая-то ошибка в самом сервисе наверное
Обсуждают сегодня