我想将Source对象映射到Destination对象,后者具有一些与源属性不直接等效的额外属性。考虑以下示例:
class Source { string ImageFilePath; }
class Destination { bool IsFileSelected; bool IsFileGif; }
IsFileGif:的映射逻辑
destinationObj.IsFileGif = Path.GetExtension(sourceObj.ImageFilePath) == ".gif" ? true : false;
IsFileSelected:的映射逻辑
destinationObj.IsFileSelected = string.IsNullOrEmpty(sourceObj.ImageFilePath) ? false : true;
此外,由于我的源代码是IDataReader,我想知道如何将IDataReader对象的字段/列映射到我的Destination属性。
我们可以使用内联代码实现这一点吗?还是必须使用值解析程序?
您尝试过使用MapFrom方法吗?
Mapper.CreateMap<Source , Destination>()
.ForMember(dest => dest.IsFileGif, opt => opt.MapFrom(src => Path.GetExtension(sourceObj.ImageFilePath) == ".gif")
.ForMember(dest => dest.IsFileSelected, opt => opt.MapFrom(src => !string.IsNullOrEmpty(sourceObj.ImageFilePath));
关于IDataReader,我认为应该在类之间进行映射(Source到Destination),而不是从IDataReader到Destination。。。
我找到了从IDataReader到Destination对象的映射:
Mapper.CreateMap<IDataReader, Destination>()
.ForMember(d => d.IsFileSelected,
o => o.MapFrom(s => !string.IsNullOrEmpty(s.GetValue(s.GetOrdinal("ImageFilePath")).ToString())))
.ForMember(d => d.IsFileGif,
o => o.MapFrom(s => Path.GetExtension(s.GetValue(s.GetOrdinal("ImageFilePath")).ToString()) == ".gif"));
如果有人验证此代码或建议是否存在更好的替代方案,我们将不胜感激。