首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

linq子查询有关问题?

2012-06-12 
linq子查询问题??select * from table1 where table1.ID not in(select TID from table2 where UID8)请问

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;

热点排行