用于打开泛型的Automapper自定义转换器
本文关键字:Automapper 自定义 转换器 泛型 用于 | 更新日期: 2023-09-27 17:58:33
在Automapper中映射开放泛型是可能的,但我在尝试将其与自定义类型转换器结合时遇到了一些问题。
以下
cfg.CreateMap(typeof(IEnumerable<>), typeof(MyCustomCollectionType<>))
.ConvertUsing(typeof(MyConverter));
MyConverter看起来像这样:
class MyConverter : ITypeConverter<object, object>
{
public object Convert(object source, object destination, ResolutionContext context)
{
//... do conversion
}
}
只是在创建映射时抛出异常:
mscorlib.dll 中的"System.InvalidOperationException"
附加信息:此操作仅对泛型类型有效。
如何为打开的泛型类型定义自定义类型转换器?我需要实现什么接口?
开放泛型的转换器需要是泛型类型。它看起来像:
public class MyConverter<TSource, TDest>
: ITypeConverter<IEnumerable<TSource>, MyCustomCollectionType<TDest>> {
public MyCustomCollectionType<TDest> Convert(
IEnumerable<TSource> source,
MyCustomCollectionType<TDest> dest,
ResolutionContext context) {
// you now have the known types of TSource and TDest
// you're probably creating the dest collection
dest = dest ?? new MyCustomCollectionType<TDest>();
// You're probably mapping the contents
foreach (var sourceItem in source) {
dest.Add(context.Mapper.Map<TSource, TDest>(sourceItem));
}
//then returning that collection
return dest;
}
}