0

I have a SQL query with multiple joins which needs to be be converted to LINQ . Apologies my LINQ is very bad , any way to convert this to LINQ .

 select s.* from Cases c
  join Accounts a  on  a.CaseID = c.CaseID
  join Product p on p.ProductMappingID = a.ProductMappingID
  join Service s on s.ServiceTypeID = p.ServiceTypeID
  where c.CaseID = 9500
tahir
  • 3
  • 3
  • Along with the problem you should **include the code you have up until this point** (*make some effort to answer your problem/question as [so] is not a code writing service*). After [doing more research](http://meta.stackoverflow.com/questions/261592) if you have a problem you can **post what you've tried** with a **clear explanation of what isn't working** and providing a **[mcve]**. I suggest reading [*How do I ask a Good Question*](/help/how-to-ask) and [*Writing the Perfect Question*](http://codeblog.jonskeet.uk/2010/08/29/writing-the-perfect-question/). Also, be sure to take the [tour]. – Igor Aug 18 '21 at 16:24

0 Answers0