这是我的sql query
。
select category from category where id in(select cid from subcategory)
我想在linq
中写一下。我该怎么写呢
有我知道的样本,但是我无法根据我的要求编写这个
from n in objvar
where new[] { "Amit", "Kumar", "XYZ" }.Contains(n.hello)
select n
答案 0 :(得分:1)
工作解决方案将是
var res= from c in Category
join
s in SubCategory on c.id equals s.cid
select c;