I could not find information on the order of matching list items in Automapper documentation or unit tests. If I try to map new List<int>() { 1, 2, 3, 4 } to another List<int> , can I be sure that the new list will always contain elements { 1, 2, 3, 4 } in same order?
Automapper unit-related unit tests only check if the new list contains items and has no assumptions regarding the order of the items.
source share