You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.1 KiB
61 lines
2.1 KiB
using AutoMapper;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace EC.Utils
|
|
{
|
|
/// <summary>
|
|
/// ExtAutoMapper
|
|
/// 版 本:V3.0.0
|
|
/// 版 权:EasyCode
|
|
/// 作 者:LXC
|
|
/// </summary>
|
|
public static class ExtAutoMapper
|
|
{
|
|
/// <summary>
|
|
/// 类型映射
|
|
/// </summary>
|
|
public static T MapTo<T>(this object obj)
|
|
{
|
|
if (obj == null) return default(T);
|
|
var config = new MapperConfiguration(cfg => cfg.CreateMap(obj.GetType(), typeof(T)));
|
|
var mapper = config.CreateMapper();
|
|
return mapper.Map<T>(obj);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 集合列表类型映射
|
|
/// </summary>
|
|
public static List<TDestination> MapToList<TDestination>(this IEnumerable source)
|
|
{
|
|
Type sourceType = source.GetType().GetGenericArguments()[0]; //获取枚举的成员类型
|
|
var config = new MapperConfiguration(cfg => cfg.CreateMap(sourceType, typeof(TDestination)));
|
|
var mapper = config.CreateMapper();
|
|
return mapper.Map<List<TDestination>>(source);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 集合列表类型映射
|
|
/// </summary>
|
|
public static List<TDestination> MapToList<TSource, TDestination>(this IEnumerable<TSource> source)
|
|
{
|
|
var config = new MapperConfiguration(cfg => cfg.CreateMap(typeof(TSource), typeof(TDestination)));
|
|
var mapper = config.CreateMapper();
|
|
return mapper.Map<List<TDestination>>(source);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 类型映射
|
|
/// </summary>
|
|
public static TDestination MapTo<TSource, TDestination>(this TSource source, TDestination destination)
|
|
where TSource : class
|
|
where TDestination : class
|
|
{
|
|
if (source == null) return destination;
|
|
var config = new MapperConfiguration(cfg => cfg.CreateMap(typeof(TSource), typeof(TDestination)));
|
|
var mapper = config.CreateMapper();
|
|
return mapper.Map<TDestination>(source);
|
|
}
|
|
}
|
|
}
|
|
|