日期:2014-05-20 浏览次数:21026 次
select * from 表 where id not in( select id from 表 where xxxx)
var query = from p in a where !(from p1 in a select p1.id).Contains(p.id) select p ------解决方案--------------------