EF架构~对AutoMapper实体映射的扩展

Posted 吴晓阳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF架构~对AutoMapper实体映射的扩展相关的知识,希望对你有一定的参考价值。

http://www.cnblogs.com/lori/p/3327898.html

/// <summary>
    /// AutoMapper扩展方法
    /// </summary>
    public static class AutoMapperExtension
    {
        /// <summary>
        /// 集合对集合
        /// </summary>
        /// <typeparam name="TResult"></typeparam>
        /// <param name="self"></param>
        /// <returns></returns>
        public static List<TResult> MapTo<TResult>(this IEnumerable self)
        {
            if (self == null)
                throw new ArgumentNullException();
            Mapper.CreateMap(self.GetType(), typeof(TResult));
            return (List<TResult>)Mapper.Map(self, self.GetType(), typeof(List<TResult>));
        }
        /// <summary>
        /// 对象对对象
        /// </summary>
        /// <typeparam name="TResult"></typeparam>
        /// <param name="self"></param>
        /// <returns></returns>
        public static TResult MapTo<TResult>(this object self)
        {
            if (self == null)
                throw new ArgumentNullException();
            Mapper.CreateMap(self.GetType(), typeof(TResult));
            return (TResult)Mapper.Map(self, self.GetType(), typeof(TResult));
        }

    }

 

以上是关于EF架构~对AutoMapper实体映射的扩展的主要内容,如果未能解决你的问题,请参考以下文章

MVC5+EF+AutoFac+AutoMapper轻型架构

AutoMapper 静态类不映射列表和嵌套实体

Automapper 首先映射 EF 可投影属性,然后是其他属性

AutoMapper C#实体映射

无法使用 OData、EF Core 和 AutoMapper 映射 List<> 导航属性

使用 Automapper,将 DTO 映射回实体框架,包括引用的实体