LINQ 中的内部查询
我有以下 SQL 查询:
Select *
from aspnet_Users
where UserId Not in
(select UN.ConnectedToUserID
from tblUserNetwork UN )
and UserId <> '82522f05-2650-466a-a430-72e6c9fb68b7'
与此 SQL 等效的 LINQ 是什么。
谢谢
I have the folowing SQL query:
Select *
from aspnet_Users
where UserId Not in
(select UN.ConnectedToUserID
from tblUserNetwork UN )
and UserId <> '82522f05-2650-466a-a430-72e6c9fb68b7'
What will be the LINQ equivalent to this SQL.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将是对 Northwind 数据库的类似查询,
它排除了来自伦敦且客户 ID 为 ALFKI 的客户
转置到您的查询中给出,
This would be a similar query for Northwind database,
it excludes customers from london and with customer id ALFKI
Transposing onto your query gives,
试试这个:
编辑:加上我想:
Try this:
EDIT: Plus this I suppose:
这是使用 Join 和 except 运算符的不同方法:
Here's a different approach using Join and Except operators: