Visual Studio 2019 throws this error in ReservationRepository.cs for below snippet.
public async Task<List<T>> GetAll<T>() {
return await GetQuery().ProjectTo<T>().ToListAsync();
}
Perhaps it has to do with this AutoMapper Issue.
How can this error be resolved?
Visual Studio 2019 throws this error in ReservationRepository.cs for below snippet.
Perhaps it has to do with this AutoMapper Issue.
How can this error be resolved?