I'm trying to create map for automapper to let me map those entity
Entities
public class Entity 
{
    ...
    public List<NavigationEntity> Navs { get; set; }
}
public class NavigationEntity   
{
    public int Id { get; set; }
}
DTO that need to be create with entities
public class EntityDto 
{
    ...
    public List<int> NavIds { get; set; }
}
This doesnt seem's to do the job! What could do the job ?
CreateMap<Entity, EntityDto>().ReverseMap();
CreateMap<NavigationEntity, int>().ConstructUsing(x => x.Id);
EDIT
Tried to add
CreateMap< List < SystemsTags >, List< int >>();
but still it doesnt map
 
    