有谁知道为什么会这样:
Mapper.Configuration.RecognizeDestinationPrefixes("Foo");
Mapper.CreateMap<A, B>();
但这不会:
Mapper.CreateProfile("FooPrefix").RecognizeDestinationPrefixes("Foo");
Mapper.CreateMap<A, B>()
.WithProfile("FooPrefix");
?
有谁知道为什么会这样:
Mapper.Configuration.RecognizeDestinationPrefixes("Foo");
Mapper.CreateMap<A, B>();
但这不会:
Mapper.CreateProfile("FooPrefix").RecognizeDestinationPrefixes("Foo");
Mapper.CreateMap<A, B>()
.WithProfile("FooPrefix");
?
虽然这个问题现在已经很老了,但我认为回答它会很有用,因为我花了很长时间试图让配置文件正常工作。
尽管有很多方法可以配置配置文件,但似乎我可以让它工作的唯一方法如下:
public class ExampleProfile : Profile
{
protected override void Configure()
{
ReplaceMemberName("Z", "A");
CreateMap<Source, Destination>(); // Notice this is CreateMap, NOT Mapper.CreateMap...
}
public override string ProfileName
{
get { return this.GetType().Name; }
}
}
然后,在您的配置中设置配置文件:
Mapper.Initialize(cfg => cfg.AddProfile<ExampleProfile>());
给定 Source 和 Destination 类如下:
public class Source
{
public string Zabc { get; set; }
}
public class Destination
{
public string Aabc { get; set; }
}
现在应该可以工作了:
var source = new Source { Zabc = "source" };
var dest = Mapper.Map<Destination>(source);
Assert.AreEqual(source.Zabc, dest.Aabc);
配置文件名称不同。您在创建配置文件时使用 FooPrefix,然后在创建地图时使用 FooPrefix。