0

我尝试了 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:05.05.2016

这是我的配置:

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)));
4

1 回答 1

2

文档中,您必须从配置创建映射器。所以你应该在你的代码中像这样

 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;
        }
    }

这意味着如果你有静态映射器,它应该从你创建的配置中创建

于 2016-05-05T07:39:59.953 回答