3
我想從一個對象映射到另一個公共只讀Guid Id,我想忽略它。我曾嘗試這樣的:Automapper忽略只讀屬性
Mapper.CreateMap<SearchQuery, GetPersonsQuery>()
.ForMember(dto => dto.Id, opt => opt.Ignore());
這似乎失敗,因爲Id爲只讀:
AutoMapperTests.IsValidConfiguration threw exception:
System.ArgumentException: Expression must be writeable
有沒有解決這個辦法嗎?
[Automapper和不變性(可能重複http://stackoverflow.com/questions/2195700/automapper -and-不變性) – rivarolle