不确定我是否以正确的方式措辞,所以希望这个例子足够明确。
我想做的事情对我来说似乎很基础,所以我假设我错过了一些明显的东西。
对于此示例,两个ForMember
映射是微不足道的,可以完成工作。问题是对于一个更复杂的类,如果配置了任何中间映射,你如何简单地将一个对象的属性映射到整个目标?
我现在搜索了一段时间,最接近找到答案的是here,但ConvertUsing
语法对我不起作用(我使用的是Automapper 4.2.1)
以下是示例类:
public class UserRoleDto
{
public string Name { get; set; }
public string Description { get; set; }
}
public class DbRole
{
public Guid RoleId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
public class DbUserRole
{
public Guid UserId { get; set; }
public DbRole Role { get; set; }
}
这是我使用Automapper配置设置的测试用例(在LINQPad中测试,这就是最后一行末尾的Dump())
var dbRole = new DbRole { RoleId = Guid.NewGuid(), Name = "Role Name", Description = "Role Description" };
var dbUserRole = new DbUserRole { UserId = Guid.NewGuid(), Role = dbRole };
var config = new MapperConfiguration(cfg =>
{
cfg.CreateMap<DbRole, UserRoleDto>();
/* Works but verbose for a class with more than a few props */
cfg.CreateMap<DbUserRole, UserRoleDto>()
.ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.Role.Name))
.ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Role.Description))
;
});
config.AssertConfigurationIsValid();
var mapper = config.CreateMapper();
var userRoleDto = mapper.Map<UserRoleDto>(dbUserRole).Dump();
答案 0 :(得分:1)
如何传递要映射的子对象? E.g。
cfg.CreateMap<DbRole, UserRoleDto>();
然后,您需要映射dbUserRole
。
dbUserRole.Role
var userRoleDto = mapper.Map<UserRoleDto>(dbUserRole.Role);
以下是使用以下类的另一个类似示例:
public class Person
{
public int person_id;
public int age;
public string name;
}
public class Address
{
public int address_id;
public string line1;
public string line2;
public string city;
public string state;
public string country;
public string zip;
}
public class PersonWithAddress
{
public int person_id;
public int age;
public string name;
public InnerAddress address;
}
public class InnerAddress
{
public string city;
public string state;
public string country;
}
使用以下测试用例:
var person = new Person { person_id = 100, age = 30, name = "Fred Flintstone" };
var address = new Address { address_id = 500, line1 = "123 Main St", line2 = "Suite 3", city = "Bedrock", state = "XY", country = "GBR", zip="90210" };
var config = new MapperConfiguration(cfg =>
{
cfg.CreateMap<Person, PersonWithAddress>();
cfg.CreateMap<Address, InnerAddress>();
});
var mapper = config.CreateMapper();
var person_with_address = mapper.Map<Person, PersonWithAddress>(person);
person_with_address.address = new InnerAddress();
mapper.Map<Address, InnerAddress>(address, person_with_address.address);
此致
罗斯