using AutoMapper;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Znyc.Recruitment.Admin.Commons.Extensions;
using Znyc.Recruitment.Admin.Commons.Properties;
namespace Znyc.Recruitment.Admin.Commons.Mapping
{
///
/// 对象映射扩展操作
///
public static class MapperExtensions
{
private static IMapper _mapper;
///
/// 设置对象映射执行者
///
/// 映射执行者
public static void SetMapper(IMapper mapper)
{
mapper.CheckNotNull("mapper");
_mapper = mapper;
}
///
/// 将对象映射为指定类型
///
/// 要映射的目标类型
/// 源对象
/// 目标类型的对象
public static TTarget MapTo(this object source)
{
CheckMapper();
return _mapper.Map(source);
}
///
/// 使用源类型的对象更新目标类型的对象
///
/// 源类型
/// 目标类型
/// 源对象
/// 待更新的目标对象
/// 更新后的目标类型对象
public static TTarget MapTo(this TSource source, TTarget target)
{
CheckMapper();
return _mapper.Map(source, target);
}
///
/// 将数据源映射为指定的集合
///
///
///
///
///
///
public static IQueryable ToOutput(this IQueryable source,
params Expression>[] membersToExpand)
{
CheckMapper();
return _mapper.ProjectTo(source, membersToExpand);
}
///
/// 集合到集合
///
///
///
///
public static List MapTo(this IEnumerable obj)
{
CheckMapper();
return _mapper.Map>(obj);
}
///
/// 验证映射执行者是否为空
///
private static void CheckMapper()
{
if (_mapper == null)
{
throw new NullReferenceException(Resources.Map_MapperIsNull);
}
}
}
}