在返回的实体list中进行sum聚合函数

前端之家收集整理的这篇文章主要介绍了在返回的实体list中进行sum聚合函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先我们来读取region的list

list<Region>region= entities.Region.where(p=>p.Isdeleted=="0")

下面我们可以对它进行聚合函数操作:

int regioncount=0;

int.TryParse(region.Sum(obj => obj.RegionLevel=="country").ToString(),out regioncount)

ScriptManager.RegisterStartupScript(Page,GetType(),"Msg","alert('"+regioncount+"'); ",true);

输出结果:1032

原文链接:https://www.f2er.com/javaschema/287186.html

猜你在找的设计模式相关文章