c#AutoMapper条件映射条件

时间:2018-08-23 13:28:48

标签: c# automapper

我只想获取社区计数以及社区删除标志为true时的计数,则为负。我写了下面的代码,它的返回全部计数。任何建议- 代码- Mapper.CreateMap< VPS_Entity.Brand, ZillowBrandViewEntity >() .ForMember(e => e.CommunityCount, ex => ex.MapFrom(s => s.Communities.Count)) .ForSourceMember(e => e.Builder, ex => ex.Ignore()); 类文件- 品牌数据模型类文件具有-   public virtual ICollection<Community> Communities { get; set; },  在社区类文件之间有-“已删除public bool {get; set;}”

谢谢。

0 个答案:

没有答案