I need a LinQ query that does the same thing as below...but I can't seem to figure it out. (I'm using C#)
SELECT * FROM Groups WHERE Id IN(
SELECT DISTINCT [GroupId] FROM [MyTable].[dbo].[Detail])
NOT This (as marked a duplicate question)
SELECT * FROM Users WHERE User_Rights IN ("Admin", "User", "Limited")
If they are the same then so be it...I'll of course take that as the answer.