How to call awaitable method on AutoMapper Profile
I’m currently working on a project where I’m using AutoMapper to map objects between different layers of my application. In one of my AutoMapper profiles, I need to call an async method to retrieve some additional data before performing the mapping. However, it seems that AutoMapper profiles don’t directly support asynchronous methods. Here’s a simplified … Read more