from c in db.Customers
group c by new { c.Country, c.City } into g
select new { g.Key.Country, g.Key.City, Count = g.Count() };
from c in db.Customers
group c by new { c.Country, c.City } into g
select new { g.Key.Country, g.Key.City, Count = g.Count() };
No comments:
Post a Comment