Convert SQL Query to Linq

Islam Reda 1 Reputation point
2021-11-20T22:32:09.387+00:00

DECLARE @AvMode int
SELECT @AvMode = StockAvaliabityMode FROM SystemConfiguration;

select distinct TOP 8 count(*)as count1, pl.Title, x.SKUID from
(select
s.ID as SKUID, o.ID as orderID, oi.SKUID as y, p.ID as productID, oi.ReturnedQty, oi.Qty,
CASE WHEN s.DiscountID IS NOT NULL THEN 1 ELSE 0 END AS HasDiscount,
CASE WHEN s.QTY = 0 THEN 1 ELSE 0 END AS IsOutOfStock
from SKU s
join OrderItem oi on oi.SKUID = s.ID
join [ORDER] o on o.ID = oi.OrderID
join Product p on p.ID = s.ProductID
where s.ProductID <> 2) x
JOIN ProductLocalize pl ON pl.ProductID = x.productID AND LanguageID = 2
join StoreSKU ss on ss.SKUID = x.SKUID and ss.StoreID=2
join orderItem oi on oi.OrderID = x.orderID
join [ORDER] o on o.ID = x.OrderID AND o.Status <> 4 AND o.Status <> 6 AND ISNULL(oi.ReturnedQty, 0) < oi.Qty AND
(ss.QTY > 0 OR @AvMode = 2)

where oi.SKUID not in (x.y)
and o.ID in (select o.ID from SKU s
join OrderItem oi on oi.SKUID = s.ID
join [ORDER] o on o.ID = oi.OrderID
join Product p on p.ID = s.ProductID
where p.ID = 2)
group by pl.Title, x.SKUID, o.ID
order by count1

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,366 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Seeya Xi-MSFT 16,461 Reputation points
    2021-11-22T02:43:48.86+00:00

    Hi @Islam Reda ,

    You can try the below tools to convert it.
    https://www.linqpad.net/
    http://www.sqltolinq.com/

    Best regards,
    Seeya


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments