将linq中的join与groupby和sum一起留在sql中

本文关键字:一起 sql sum 中的 linq join groupby | 更新日期: 2023-09-27 17:51:01

我正在尝试转换T-sql,它是

select c.description, sum(t.quantity), sum(t.Price) from trn_itm t
left join CAFE c on t.Item_key = c.dfm_key
where transaction_key = 87378
group by c.Description

我的linq是

var query = from p in DfmSession.CurrentContext.TRN_ITMs
            join c in DfmSession.CurrentContext.CAFEs on p.Item_key equals c.Dfm_key into t
            from rt in t.DefaultIfEmpty()
            where p.Transaction_key == _dfmkey
            select new
            {
                Dfm_key = (int?)rt.Dfm_key,
                rt.Description,
                p.Quantity,
                p.Price
            };

如何获得Sum(p.Quantity(和Sum(p.Price(?

将linq中的join与groupby和sum一起留在sql中

var query = from p in DfmSession.CurrentContext.TRN_ITMs
        join c in DfmSession.CurrentContext.CAFEs on p.Item_key equals c.Dfm_key into t
        from rt in t.DefaultIfEmpty()
        where p.Transaction_key == _dfmkey
        group by rt.Description into g
        select new
     {
         description = g.Key,
         Price = g.Sum(x => x.Price),
         Quantity = g.Sum(x => x.Quantity)
     };
var query = from p in DfmSession.CurrentContext.TRN_ITMs
            join c in DfmSession.CurrentContext.CAFEs on p.Item_key equals c.Dfm_key into t
            from rt in t.DefaultIfEmpty()
            where p.Transaction_key == _dfmkey
            group p by rt.Description into g
            select new
            {
                Description = g.Keu
                Quantity = g.Select(x => x.Quantity).Sum()
                Price = g.Select(x => x.Price).Sum()
            };
group by rt.Description into g

然后在g上使用您选择的聚合函数,例如:

select new { Price = g.Sum(x => x.Price) }
group by su.Description into h

然后在h上使用您选择的聚合方法,例如:

select new { Price = h.Sum(y =? y.Price) }