I have a trouble with converting this SQL query to Entity Framework:
SELECT Products.Name, COUNT(*)
FROM OrdersProducts
JOIN Products on OrdersProducts.ProductId = Products.Id
GROUP BY Products.Id
ORDER BY COUNT(*) DESC
Tried hard but with no results. I don't have any idea how to make it work.