3

我想使用 automapper 使用 Automappers 配置文件创建绝对 url。这样做的最佳做法是什么?

  • 我的配置文件在启动期间自动配置。
  • 如果有帮助,我正在使用 Ioc 容器。

    SourceToDestinationProfile : Profile
    {
        public SourceToDestinationProfile()
        {
            var map = CreateMap<Source, Destination>();
    
            map.ForMember(dst => dst.MyAbsoluteUrl, opt => opt.MapFrom(src => "http://www.thisiswhatiwant.com/" + src.MyRelativeUrl));
            ...
        }
    }
    

以某种方式,我动态地想要获取请求基 URL(“ http://www.thisiswhatiwant.com/ ”),以便将它与我的 relativeurl 放在一起。我知道一种方法,但它并不漂亮,即不可能是最好的方法。

4

1 回答 1

1

我不知道这是否是你要找的:

public class Source
{
    public string Value1 { get; set; }

    public string Value2 { get; set; }
}

public class Destination
{
    public string Value1 { get; set; }

    public string Value2 { get; set; }
}

public class ObjectResolver : IMemberValueResolver<Source, Destination, string, string>
{
    public string Resolve(Source s, Destination d, string source, string dest, ResolutionContext context)
    {
        return (string)context.Items["domainUrl"] + source;
    }
}

public class Program
{
    public void Main()
    {
         var config = new MapperConfiguration(cfg =>
            {
                cfg.CreateMap<Source, Destination>()
                    .ForMember(o => o.Value1, opt => opt.ResolveUsing<ObjectResolver, string>(m=>m.Value1));
            });

            var mapper = config.CreateMapper();
            Source sr = new Source();
            sr.Value1 = "SourceValue1";
            Destination de = new Destination();
            de.Value1 = "dstvalue1";
            mapper.Map(sr, de, opt => opt.Items["domainUrl"] = "http://test.com/");       
    }
}
于 2016-10-04T14:06:55.197 回答