码迷,mamicode.com
首页 > 移动开发 > 详细

ABP中mapping中忽略属性

时间:2018-09-03 00:00:08      阅读:607      评论:0      收藏:0      [点我收藏+]

标签:product   mem   code   top   相关   sum   div   create   函数   

创建一个XXXXProfile继承Profile,然后在构造函数中写忽略相关的,如下

 

public class ProductPriceDtoProfile: Profile
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        public ProductPriceDtoProfile()
        {
            CreateMap<ProductInfo, ProductPriceDto>().ForMember(x => x.SalePrice, opt => opt.Ignore());

        }
    }

 

ABP中mapping中忽略属性

标签:product   mem   code   top   相关   sum   div   create   函数   

原文地址:https://www.cnblogs.com/albertay/p/9575667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!