select * from a
where a.productid in(select b.productid from b,c
where b.CategoryId =c.ParentCategoryId)
将上面的sql转换成linq是什么样子的?
转化成linq to sql