9
Answers

Linq Help

How to write this sql query in Linq below


SELECT tableExample.FilledByID, tableExample.ServiceType
FROM tableExample
GROUP BY tableExample.FilledByID, tableExample.ServiceType
HAVING (((tableExample.ServiceType)<>"ST-Service"));

Answers (9)