使用LINQ获得平均值 [英] Get Average Using LINQ

查看:104
本文介绍了使用LINQ获得平均值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

希望有人可以帮助我使用LINQ语法来计算平均值.例如,我有以下LINQ查询:

Hoping someone can help me with the LINQ syntax to calculate an average. For example, I have the following LINQ query:

var rates = from rating in ctx.Rates  
            where rating.Id == Id  
            select new 
            {   
                UserId = rating.UserId,  
                Rating = rating.Rating  
            };  

如果返回10条记录,则需要在评分"字段上计算平均值.在我的数据库中,它被定义为Double.我正在使用LINQ to EF.因此,我将分配UserId,MiscId,并且Rating将是返回记录的平均值.我正在将一个对象传递回客户端代码.

If 10 records are returned, I need to calculate average on the Rating field. It is defined as as a Double in my DB. I am using LINQ to EF. So I would be assigning the UserId, MiscId, and the Rating would be the average on the records returned. I am passing one object back to the client code.

推荐答案

您要查找每个用户ID的平均评分吗?如果是这样,则您需要同时使用 GroupBy

Are you looking for an average rating per user id? If so, then you need to use both GroupBy and Average.

var rates = ctx.Rates
               .Where( r => r.Id == Id )
               .GroupBy( g => g.UserId, r => r.Rating )
               .Select( g => new
                {
                   UserId = g.Key,
                   Rating = g.Average()
                }); 

这篇关于使用LINQ获得平均值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆