I don’t know how to translate Sql statement with join and subquery to linq..Following is sql statement which i trying to translate ..Please help
Select product.Name from product where Product.Id in( select ProductId from
SaleDetail s join Sale s1 on s.SaleId=s1.Id where s.SaleId in(select Id from Sale where sale.CustomerId=17264))
Something like this (where db is the linq data context):