Mapper

天下之事常成于困约,而败于奢靡。这篇文章主要讲述Mapper相关的知识,希望能为你提供帮助。
public static T MapTo< T> (this object obj)
{
if (obj == null) return default(T);
Mapper.CreateMap(obj.GetType(), typeof(T));
return Mapper.Map< T> (obj);
}
【Mapper】/// < summary>
/// 集合列表类型映射
/// < /summary>
public static List< TDestination> MapToList< TSource, TDestination> (this IEnumerable< TSource> source)
{
Mapper.CreateMap< TSource, TDestination> ();
return Mapper.Map< List< TDestination> > (source);
}













    推荐阅读