Mapper

Posted Chavez.net

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
}

/// <summary>
/// 集合列表类型映射
/// </summary>
public static List<TDestination> MapToList<TSource, TDestination>(this IEnumerable<TSource> source)
{
Mapper.CreateMap<TSource, TDestination>();
return Mapper.Map<List<TDestination>>(source);
}













以上是关于Mapper的主要内容,如果未能解决你的问题,请参考以下文章

hadoop中mapreduce的默认设置

重构cms ,cms升级到3.0

Spring MVC入门第3天--注解开发

java.sql.SQLException: Column index out of range.