UseDestinationValue做什麼?AutoMapper和「UseDestinationValue」
我在問,因爲我有一個基類和繼承類,對於基類,我很想讓AutoMapper爲我帶來現有的值。
它會這樣做嗎? (我看了一下,是唯一的例子,我可以看到UseDestinationValue
涉及名單是不是隻對名單
我能做到這一點:??
PersonContract personContract = new PersonContract {Name = 'Dan'};
Person person = new Person {Name = "Bob"};
Mapper.CreateMap<PersonContract, Person>()
.ForMember(x=>x.Name, opt=>opt.UseDestinationValue());
person = Mapper.Map<PersonContract, Person>(personContract);
Console.WriteLine(person.Name);
,並具有輸出是鮑勃
這是一樣的只是使用忽略()。 – Monstieur