18

我有很多实体,到目前为止,我一直在做类似的事情

Mapper.CreateMap<Employee, EmployeeDetailsDTO>()
    .ForSourceMember(mem => mem.NewsPosts, opt => opt.Ignore());

我想告诉 AutoMapper 只需忽略目标对象中缺少的属性,而不必指定每个属性。到目前为止,我还没有找到一种方法来处理我的多个 SO 和 Google 搜索。有人有解决方案吗?我已经准备好做某种循环或任何事情,只要它可以编写一次并且它将随着模型 / dto 更改或添加的属性而扩展。

4

3 回答 3

11

你什么时候收到错误?是你打电话的时候AssertConfigurationIsValid吗?

如果是,那么就不要调用这个方法

您不必调用此方法,请考虑以下有效的映射:

public class Foo1
{
    public string Field1 { get; set; }
}
public class Foo2
{
    public string Field1 { get; set; }
    public string Field2 { get; set; }
}

Mapper.CreateMap<Foo1, Foo2>();
var foo1 = new Foo1() {Field1 = "field1"};
var foo2 = new Foo2();
Mapper.Map(foo1, foo2);//maps correctly, no Exception

您可能需要调用其他AssertConfigurationIsValid映射以确保它们正确,因此您需要做的是将映射组织到配置文件中:

public class MyMappedClassesProfile: Profile
{
    protected override void Configure()
    {
        CreateMap<Foo1, Foo2>();
        //nb, make sure you call this.CreateMap and NOT Mapper.CreateMap
        //I made this mistake when migrating 'static' mappings to a Profile.    
    }
}

Mapper.AddProfile<MyMappedClassesProfile>();

然后如果您决定要检查映射的有效性(根据您的情况逐案)然后调用

Mapper.AssertConfigurationIsValid(typeof(MyMappedClassesProfile).FullName);

在您的情况和/或您不打电话的任何情况下很重要AssertConfigurationIsValid,您应该使用AutoFixture和单元测试之类的东西来确保您的映射正常工作。(这是 的意图AssertConfigurationIsValid

于 2012-11-13T12:59:31.860 回答
7

wal 的回答中建议“不要调用 AssertConfigurationIsValid()”是不安全的,因为它会隐藏映射中的潜在错误。
最好明确地忽略类之间的映射,因为您确信所有需要的属性都已经正确映射。您可以使用在AutoMapper 中创建的扩展:“忽略其余部分”?回答:

var config = new MapperConfiguration(cfg =>
{
    cfg.CreateMap<Src, Dest>();
     cfg.IgnoreUnmapped<Src, Dest>();  // Ignores unmapped properties on specific map
});

不带参数的重载会cfg.IgnoreUnmapped(this IProfileExpression profile) 忽略所有映射上的未映射属性,因此不推荐使用,因为它还隐藏了所有类的任何潜在问题。

于 2016-07-17T13:16:55.350 回答
0

如果我有很多类需要忽略很多属性,我不想在调用 AssertConfigurationIsValid() 时出现异常,而是更愿意在日志中报告它并且只是查看所有有意遗漏的未映射属性。因为 AutoMapper 没有公开进行验证的方法,所以我捕获了 AssertConfigurationIsValid 并将错误消息作为字符串返回。

    public string ValidateUnmappedConfiguration(IMapper mapper)
    {
        try
        {
            mapper.ConfigurationProvider.AssertConfigurationIsValid();
        }
        catch (AutoMapperConfigurationException e)
        {
              return e.Message;
        }
        return "";
    }

我从单元测试中调用 ValidateUnmappedConfiguration 方法

   [TestMethod]
    public void LogUmmappedConfiguration()
    {
        var mapper = new MapperConfiguration((cfg =>
        {
            cfg.AddProfile(new AutoMapperProfile());
        })).CreateMapper();
        var msg=ValidateUnmappedConfiguration(mapper) ;
        if (!msg.IsNullOrBlank())
        {
            TestContext.WriteString("Please review the list of unmapped fields and check that it is intentional: \n"+msg);
        }
    }
于 2018-09-08T06:36:08.933 回答