How to convert LINQ query to Lambda
What does this command look like in Lambda
The shopping table has join to product table
var result = (from a in db.Tbl_ShoppingCart
group a.Productid by a.Tbl_Product into g
orderby g.Count() descending
select g.Key).Take(8).ToList();