I'm trying to find a good reference to help me convert this TSQL statement to Linq:
EXAMPLE:
SELECT * FROM Categories WHERE ProductID IN (SELECT ProductID FROM ProductCategories WHERE CatID = 23)
I can't find anywhere that references how to do the WHERE "IN" part.