Int.Parse in Linq Expression

后端 未结 7 1869
花落未央
花落未央 2020-12-01 21:18

I have the following LINQ expression. I want calculate the sum of numeric values in an nvarchar field. I\'m using following code to do this, but I get an error

7条回答
  •  执念已碎
    2020-12-01 21:54

    You can't use int.parse in where. You can rewrite your query like this:

    var list = (from x in
                    (
                        from inv in m.INVs
                        join l in m.LIBs on inv.MESC equals l.MESC
                        join o in m.OUTs on inv.MESC equals o.MESC
                        join t in m.TRANs on inv.MESC equals t.MESC
                        where t.TYPE == "60" && t.QTY!=""
                        select new
                           {
                               l.MESC,
                               l.LINE_NO,
                               l.UNIT_LINE,
                               Description = l.DES + " " + l.PART_NO,
                               inv.NEW_QTY,
                               o.PJ,
                               o.DATE,
                               o.QTY,
                               o.QTY_REC,
                               TranQty = t.QTY,
                               tranDate = t.DATE
    
                          }
                    ).ToList()
                group x by
                    new
                        {
                            x.MESC,
                            x.LINE_NO,
                            x.UNIT_LINE,
                            x.Description,
                            x.NEW_QTY,
                            x.PJ,
                            x.DATE,
                            x.QTY,
                            x.QTY_REC
                        }
                into g
                select new
                    {
                        QTY_Consum_1 = g.Where(c => int.Parse(c.tranDate) >= cuDate && int.Parse(c.tranDate) <= endDate).Sum(d => int.Parse(d.TranQty)),
                        g.Key.MESC
                    }
               ).ToList();
    

    Call .ToList() method, then use int.Parse(variable).

    Have a nice day.

提交回复
热议问题