我只想获取社区计数以及社区删除标志为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;}”
谢谢。