AutoMapper展平扩展方法

时间:2012-03-30 22:02:22

标签: c# automapper

我正在寻找使用源对象的扩展方法展平源对象的最简单/最优雅的方法。

来源:

class Source
{
    public int Value1 { get; set; }
    public int Value2 { get; set; }
}

扩展方法我想优雅地映射:

static class SourceExtensions
{
    public static int GetTotal(this Source source)
    {
        return source.Value1 + source.Value2;
    }
}

目的地:

class Destination
{
    public int Value1 { get; set; }
    public int Value2 { get; set; }
    public int Total { get; set; }
}

有没有比这更好的方法(我不必调用每种扩展方法)?

using NamespaceContainingMyExtensionMethods;
...
Mapper.CreateMap<Source, Destination>()
    .ForMember(destination => destination.Total,
        opt => opt.ResolveUsing(source => source.GetTotal()));

类似的东西:

Mapper.CreateMap<Source, Destination>()
    .ResolveUsingExtensionsInNamespace("NamespaceContainingMyExtensionMethods");

我知道我可以在源对象上使用继承层次,但在我的情况下,它并不理想。

我研究过: Does AutoMapper's convention based mappings work with LINQ extension methods?https://github.com/AutoMapper/AutoMapper/issues/34

2 个答案:

答案 0 :(得分:2)

在我的fork中添加了提交并为此发出了拉取请求。像魅力一样工作!

提交:https://github.com/claycephus/AutoMapper/commit/e1aaf9421c63fb15daca02607d0fc3dff871fbd1

拉取请求:https://github.com/AutoMapper/AutoMapper/pull/221

通过指定要搜索的程序集来配置它:

Assembly[] extensionMethodSearch = new Assembly[] { Assembly.Load("Your.Assembly") };
Mapper.Initialize(config => config.SourceExtensionMethodSearch = extensionMethodSearch);
Mapper.CreateMap<Source, Destination>();

答案 1 :(得分:0)

黏土仍然存在,但随着时间的推移已经被重构。对于那些在automapper中搜索此内容的人,您应该使用:

var config = new MapperConfiguration(cfg => {
    cfg.IncludeSourceExtensionMethods(typeof(SourceExtensions));
    cfg.CreateMap<Source, Destination>();
});
var mapper = config.CreateMapper();