本文介绍了我的SQL查询需要等效的LINQ查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
SELECT * FROM Tbl_Vulpith_Registration
WHERE MemId NOT IN (select MemId from Tbl_PublicLink);
推荐答案
在下面尝试以下代码段:
Try this snippet below:
var query = from c in dc.Tbl_Vulpith_Registration
where !(from o in dc.Tbl_PublicLink
select o.MemId )
.Contains(c.MemId )
select c;
或使用扩展方法:
var resultList= Tbl_Vulpith_Registration.Where(p => !Tbl_PublicLink.Any(p2 => p2.MemId == p.MemId));
这篇关于我的SQL查询需要等效的LINQ查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!