Automapper语言 - AutoMapper.AutoMapperMappingException



我尝试了Automapper,它有一个非常简单的映射,但它不起作用。我正在尝试将一个System.Security.Claims.Claim类型映射到另一个类型ClaimItem:

public class ClaimItem
{
    public string Type { get; set; }
    public string Value { get; set; }
}

但我总是得到:

AutoMapper.AutoMapperMappingException:缺少类型映射配置或不支持映射。

映射类型:Claim->ClaimItem System.Security.Claims.Claim->CommonAuth.ClaimItem

目标路径:ClaimItem

源值:http://schemas.xmlsoap.org/ws/2005/05/identity/claims/dateofbirth:2016年5月5日

这是我的配置:

var config = new MapperConfiguration(cfg =>
{
    cfg.CreateMap<Claim, ClaimItem>(MemberList.Destination);
});
config.AssertConfigurationIsValid();
var cls = getClaims();
List<ClaimItem> list = new List<ClaimItem>();
cls.ForEach(cl => list.Add(Mapper.Map<ClaimItem>(cl)));

从文档中,您必须从配置创建映射程序。所以你应该在你的代码中有类似的smth

 private static Mapper _mapper;
    public static Mapper Mapper
    {
        get
        {
            if (_mapper == null)
            {
                var config = new MapperConfiguration(cfg =>
                {
                    cfg.CreateMap<Claim, ClaimItem>(MemberList.Destination);
                });
                config.AssertConfigurationIsValid();
                _mapper = config.CreateMapper();
            }
            return _mapper;
        }
    }

这意味着,如果您有静态Mapper,它应该从您创建

的配置中创建

相关内容

  • 没有找到相关文章

最新更新