使用Automapper映射只读字段

我在不同的命名空间中有两个相同的类:

namespace ClassLibrary1
class Class1
{
    public readonly int field1;
    public Class1(int value) { field1 = value; }
}

和名称空间ClassLibrary2的相同类定义。

当我尝试使用AutoMapper时,出现以下异常:

表达式必须是可写的参数名称:left

这是AutoMapper的代码:

Mapper.CreateMap<ClassLibrary1.Class1, ClassLibrary2.Class1>();
var result = Mapper.Map<ClassLibrary2.Class1>(class1);

但是,如果我尝试使用AutoMapper Exclude Fields,它不起作用:

Mapper.CreateMap<ClassLibrary1.Class1, ClassLibrary2.Class1>()
    .ForMember(a => a.field1, a => a.Ignore());

当然,它的作用是将其更改为具有公共获取和私有设置的属性(如在Automapper中忽略只读属性),但是我想阻止未来的开发人员在构造函数之后设置值。

有没有使用AutoMapper解决这个问题的方法?


如果您想在构造函数中设置属性,请使用.ConstructUsing ,然后忽略该字段:

Mapper.CreateMap<ClassLibrary1.Class1, ClassLibrary2.Class1>()
    .ConstructUsing(cls1 => new ClassLibrary2.Class1(cls1.field1))
    .ForMember(a => a.field1, a => a.Ignore());
链接地址: http://www.djcxy.com/p/37387.html

上一篇: Map readonly fields with Automapper

下一篇: AutoMapper with complex types