I've read this example on AutoMapper's GirHub, but the example assumes there'll only be one way to map InnerSource, ever:
Mapper.CreateMap<OuterSource, OuterDest>();
Mapper.CreateMap<InnerSource, InnerDest>();
Mapper.AssertConfigurationIsValid();
var source = new OuterSource
{
Value = 5,
Inner = new InnerSource {OtherValue = 15}
};
var dest = Mapper.Map<OuterSource, OuterDest>(source);
With my project, I'm serializing objects created with EF that have circular references. The reason for this is I will need to come at the objects from different 'directions.' For example, if I ask for a list of users, I want to see the projects they're associated with. If I ask for a project, I want to see the users associated with that project.
These circular references can get fairly deep, like User.Role.Project.TaskTime.User, User.TaskTime.Project.Task.TaskType.VisibleToRole.Role.User, etc.
So I need the nested mapping to be fairly deep, and the way it's done depends on what the first mapping was.
Currently I'm doing:
Mapper.CreateMap<User, UserFull>()
.ForMember("TaskTimes", opt => opt.MapFrom(src => Mapper.Map<ICollection<TaskTime>, UserTaskTime>(src.TaskTimes)));
Mapper.CreateMap<TaskTime, UserTaskTime>()
.ForMember("Task", opt => opt.MapFrom(src => Mapper.Map<Task, UserTaskTimeTask>(src.Task)));
//...
The viewmodels for that snippet look like this:
public class UserFull
{
public string Email { get; set; }
public string Name { get; set; }
public virtual ICollection<TaskTime> TaskTimes { get; set; }
//...
}
public class UserTaskTime
{
public int Id { get; set; }
public Task Task { get; set; }
//...
}
public class UserTaskTimeTask
{
//...
}
Is this right? Should I be projecting each member from the viewmodel and mapping it by hand using projection? Or is there a cleaner way to do this?