I'm trying to accomplish the following. I have a DTO that returns values from the database and I'd like to map the DTO to a Model. My model has a property that has a class type. I'd like to set that property to a new instance of the class using the values in the DTO. So here is some code that shows what I'm trying to do.
public class ItemDTO {
public int ItemID { get; set; }
public int ItemPartID { get; set; }
public string ItemPartName { get; set; }
}
public class ItemModel {
public int ItemID { get; set; }
public ItemPartModel ItemPart { get; set; }
}
public class ItemPartModel {
public int ItemPartID { get; set; }
public string ItemPartName { get; set; }
}
public void DoMapping() {
Mapper.CreateMap<ItemDTO, ItemModel>()
.ForMember(m => m.ItemPart,
dto => dto.MapFrom(ipm => new ItemPartModel() {
ItemPartID = ipm.ItemPartID,
ItemPartName = ipm.ItemPartName}));
}
When I use the map created here, I end up with the ItemModel's ItemPart property having values of 0 and ItemPartName of 'ItemPartName'
Please let me know if there is anymore info I can provide and thanks for viewing.