我有一个IEnumerable<T>
的扩展方法,它映射序列项并返回一个克隆数组:
public static class AutoMapperExtensions
{
public static T[] MapToArray<T>(this IEnumerable<T> sequence)
{
return Mapper.Map<T[]>(sequence);
}
}
这里的代码示例,其行为很奇怪:
Mapper.CreateMap<SomeClass, SomeClass>();
Mapper.AssertConfigurationIsValid();
// clone list members and store them into array
var list = new List<SomeClass>
{
new SomeClass { MyProperty = 1 },
new SomeClass { MyProperty = 2 },
};
// works fine
var array = list.MapToArray();
// let's map array again
var newArray = array.MapToArray();
// ...and ensure, that new array was created;
// this fails, because Automapper returns reference to the same array
Debug.Assert(array != newArray);
在我看来,最后的结果是错误的。虽然我期待,该映射器将创建新的克隆数组,但它只返回对同一数组的引用。
这是在其他地方记录的还是这是一个错误?
答案 0 :(得分:2)
所以这不是一个错误 - 当AutoMapper看到两个可分配的对象时,它只会分配它们。如果要覆盖该行为,请在两种集合类型之间创建映射。