Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi everyone...

this is my sql_query


SQL
SELECT [Problem_Name] ,[Lab_Name], COUNT(*) count_problem
  FROM [laboratory].[dbo].[Problem_tab]p,
  [laboratory].[dbo].[PC_Hard_Problem_tab] pp,[laboratory].[dbo].[Lab_tab] l
  WHERE  p.Problem_Id = pp.Problem_Id AND l.Lab_Id = 8
  GROUP BY p.Problem_Id,Problem_Name,[Lab_Name];




how i convert this to linq-to-entity query ?????

please help my ..
Posted

1 solution

Hello,

You can download software to Convert Sql to linq or vise versa.

Thanks

SQL TO LINQ[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900