I am bit stuck with the converting a SQL query into LINQ. Can any body please help me out. Here is my query
SELECT x.*
FROM FilterType x
JOIN (SELECT t.FilterType
FROM FilterType t
where FilterId in (7,15)
GROUP BY t.FilterType
HAVING COUNT(t.FilterType) > 1) y ON y.FilterType = x.FilterType
Thanks in advance.