我从API搜索方法返回搜索结果,我希望尽可能缩短响应内容的长度。
我也设置了AutoMapper,这本身就可以很好地处理配置文件中配置的各种映射。
搜索结果的一个属性可能相当重要,我不希望包含该数据,因为它不太可能总是需要。因此,根据搜索条件,我添加了一个标志以包含此属性。
有没有办法根据其他外部因素有条件地映射属性?
目前,在地图配置中,我告诉它忽略了weighty属性,然后如果条件指定了它,我随后映射另一个集合并将其分配给搜索结果。
e.g。在映射配置文件中:
this.CreateMap<myModel, myDto>()
.ForMember((dto) => dto.BigCollection,
(opt) => opt.Ignore())
然后在代码中:
results.MyDtos = myModels.Select((m) => Mapper.Map<myDto>(m));
if (searchCriteria.IncludeBigCollection)
{
foreach(MyDto myDto in results.MyDtos)
{
// Map the weighty property from the appropriate model.
myDto.BigCollection = ...
}
}
答案 0 :(得分:1)
如果您使用的是Automapper 5.0,则可以使用IMappingOperationOptions
和IValueResolver
将方法范围中的值传递给映射器本身。
以下是一个例子:
您的价值解析器:
class YourValueResolver : IValueResolver<YourSourceType, YourBigCollectionType>
{
public YourBigCollectionType Resolve(YourSourceType source, YourBigCollectionType destination, ResolutionContext context)
{
// here you need your check
if((bool)context.Items["IncludeBigCollection"])
{
// then perform your mapping
return mappedCollection;
}
// else return default or empty
return default(YourBigCollectionType);
}
}
配置您的映射:
new MapperConfiguration(cfg =>
{
cfg.CreateMap<YourSourceType, YourDestinationType>().ForMember(d => d.YourBigCollection, opt => opt.ResolveUsing<YourValueResolver>());
});
然后你可以调用Map
方法,如:
mapper.Map<YourDestinationType>(yourSourceObj, opt.Items.Add("IncludeBigCollection", IncludeBigCollectionValue));
IncludeBigCollectionValue
将被传递到值解析器并根据您在那里写的内容使用。