I am pulling data from a web API so I have no relationships between sources. I have a list of tickets from one method and a list of statuses from another. The ticket model has a statusId field that relates to one of the statuses in the list of statues. My TicketDTO has a StatusName field that I need to map from my previously populated list of statuses.
I have no idea how to do this in Automapper. Any suggestions or examples?
Thanks in advance