0
SELECT     Cities.CityName, Customers.CustomerName, SUM(Bills.Sarees)
FROM       Bills INNER JOIN
                      Customers ON Bills.CustomerID = Customers.CustomerID INNER JOIN
                      Cities ON Customers.CityID = Cities.CityID
Group by CustomerName, CityName

我试图使它如下......但我无法在其中插入 group by 子句

 var query = db.Bills.Join(db.Customers, c => c.CustomerID, p => p.CustomerID, (c, p) => new
            {
                c.Customer.CustomerID,
                c.Customer.CustomerName,
                c.Customer.City.CityName,
                c.Customer.Mobile1,
                c.Customer.Mobile2,
                c.Customer.Telephone,
                c.Customer.Email,
                c.Sarees
            });
4

1 回答 1

1

看看你的 SQL,我猜你需要这样的东西:

var query = db.Bills
    .Join(db.Customers, b => b.CustomerID, c => c.CustomerID, (b, c) => new
    {
        b.Sarees,
        c.CustomerName,
        c.CityID
    })
    .Join(db.Cities, j => j.CityID, c => c.CityID, (j, c) => new 
    {
        j.Sarees,
        j.CustomerName,
        j.CityID,
        c.CityName
    })
    .GroupBy(o => new { o.CustomerName, o.CityName })
    .Select(o => new { o.Key.CityName, o.Key.CustomerName, Sum = o.Sum(i => i.Sarees) });
于 2012-07-11T06:57:12.753 回答