I have a collection property of DTO like this
 public ICollection<Applicant> Applicants{get;set;}
Applicant Model
public class Applicant
{
   public int Id{get;set;}
   public string name{get;set;}
   public ICollection<ApplicantSkillsVM> ApplicantSkills { get; set; }
}
public class ApplicantSkillsVM
{
   public int Id {get;set;}
   public Skill skill{get;set;}
}
I want to map my  List<iApplicant> DTO to entity given that I want to take ApplicantSkillsVM but ignore skill inside ApplicantSkillsVM.
I have a model which is list List<Applicant> and that contains another list List<ApplicantSkillsVM> and ApplicantSkillsVM has a property skill. I want to ignore this (skill) while mapping. Its simple. 
How can I do this in latest the AutoMapper version with EF6?
 
     
    