当前位置: 代码迷 >> ASP.NET >> linq子查询有关问题?
  详细解决方案

linq子查询有关问题?

热度:941   发布时间:2013-02-25 00:00:00.0
linq子查询问题??
select * from table1 where table1.ID not in(select TID from table2 where UID=8)

请问下这个用 LinQ 怎样去写啊 ?

------解决方案--------------------------------------------------------
from s in table1 where !(from p in table2 select p.ID).ToList().Contains(s.ID) select s;
  相关解决方案