linq sum where

本人第一次使用linq,现在需要的功能是,有个List<T> ,T里有一列SScore,我想取得SScore不等于null的所有值的总和。写法如下 

linq  sum wherelinq  sum whereView Code
 IList<StuItem> stEntityList = new List<StuItem>();
            StuItem stBll = new StuItem();
            stEntityList = stBll.GetModelList("");
 
            int totalScore = (from s in stEntityList where s.SScore != null select s.SScore).Sum().Value;

 

 其实功能与下面的代码效果一致:  

linq  sum wherelinq  sum whereView Code
 int totalScore = 0;
             foreach (StuItem sientity in stEntityList)
            {
                 if (sientity.SScore != null)
                {
                    totalScore += sientity.SScore.Value;
                }
                
             }
上一篇:SlimerJS – Web开发人员可编写 JS 控制的浏览器


下一篇:关于仿酷狗音乐播放器开源:寻求一套音乐播放器素材,让仿酷狗开源