ABP中mapping中忽略属性
Posted 恝置
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABP中mapping中忽略属性相关的知识,希望对你有一定的参考价值。
创建一个XXXXProfile继承Profile,然后在构造函数中写忽略相关的,如下
public class ProductPriceDtoProfile: Profile { /// <summary> /// 构造函数 /// </summary> public ProductPriceDtoProfile() { CreateMap<ProductInfo, ProductPriceDto>().ForMember(x => x.SalePrice, opt => opt.Ignore()); } }
以上是关于ABP中mapping中忽略属性的主要内容,如果未能解决你的问题,请参考以下文章