我想在两个班级之间映射:
public class A {
public IEnumerable<C> someList
}
和
public class B {
public RepeatedField<D> someList
}
其中RepeatedField是Google.Protobuf.Collections中的一个类,用于处理gRPC数据。
编辑:事实证明,gRPC通过其原型创建类的方式并不完全类似于创建类似B的类。
我这样创建一个Automapper MappingConfiguration
return new MapperConfiguration(cfg =>
{
cfg.CreateMap<C, D>().ReverseMap();
cfg.CreateMap<A, B>().ReverseMap();
});
,然后通过ASP.NET Startup类进行注册。
如果我在另一个班级做类似的事情
A instanceA; // assume A's list has values inside
var listofD = this.mapper.Map<List<D>>(A.someList)
它正确地返回一个包含值的列表。但是:
A instanceA; // assume A's list has values inside
B instanceB = this.mapper.Map<B>(A);
返回B的一个实例,但是instanceB内的列表为空。我该如何解决?
答案 0 :(得分:1)
您需要创建一个custom type converter来执行转换:
private class EnumerableToRepeatedFieldTypeConverter<TITemSource, TITemDest> : ITypeConverter<IEnumerable<TITemSource>, RepeatedField<TITemDest>>
{
public RepeatedField<TITemDest> Convert(IEnumerable<TITemSource> source, RepeatedField<TITemDest> destination, ResolutionContext context)
{
destination = destination ?? new RepeatedField<TITemDest>();
foreach (var item in source)
{
// obviously we haven't performed the mapping for the item yet
// since AutoMapper didn't recognise the list conversion
// so we need to map the item here and then add it to the new
// collection
destination.Add(context.Mapper.Map<TITemDest>(item));
}
return destination;
}
}
反之,如果需要的话:
private class RepeatedFieldToListTypeConverter<TITemSource, TITemDest> : ITypeConverter<RepeatedField<TITemSource>, List<TITemDest>>
{
public List<TITemDest> Convert(RepeatedField<TITemSource> source, List<TITemDest> destination, ResolutionContext context)
{
destination = destination ?? new List<TITemDest>();
foreach (var item in source)
{
destination.Add(context.Mapper.Map<TITemDest>(item));
}
return destination;
}
}
您可以这样注册:
ce.CreateMap(typeof(IEnumerable<>), typeof(RepeatedField<>)).ConvertUsing(typeof(EnumerableToRepeatedFieldTypeConverter<,>));
ce.CreateMap(typeof(RepeatedField<>), typeof(List<>)).ConvertUsing(typeof(RepeatedFieldToListTypeConverter<,>));
答案 1 :(得分:-2)
我已经解决了这个问题。
C#类中的Google.Protobuf.Collections.RepeatedField是只读的,这意味着直接向其中分配值将不起作用,并且只会在返回途中返回一个空列表。因此,我在两个较大的类之间创建了一个自定义类型转换器,以将它们组合在一起。它的作用是将值直接添加到RepeatedField中,而不是填充我自己的RepeatedField并将值分配给类。
public static class mapConfig
{
public static ContainerBuilder RegisterObjectMappers(this ContainerBuilder builder)
{
builder.Register(c => GetV1MapperConfiguration().CreateMapper())
.As<IMapper>().SingleInstance();
return builder;
}
private static MapperConfiguration GetMapConfig()
{
return new MapperConfiguration(cfg =>
{
// some mappings here
cfg.CreateMap<C, D>().ReverseMap();
cfg.CreateMap<A, B>().ConvertUsing<AToBConverter>();
});
}
}
public class AToBConverter : ITypeConverter<A, B>
{
public B Convert(A source, B destination, ResolutionContext context)
{
var b = new B
{
// internal values here aside from the repeated field(s)
};
// Need to use the Add method to add values rather than assign it with an '=' sign
foreach (var someValue in source.someList)
{
b.someList.Add(context.Mapper.Map<D>(someValue));
}
return b;
}
}
从RepeatedField转换为List或映射类中的任何其他IEnumerable都没有问题,并且不需要其他转换器。