Linq 中的 not existed in 查询

from c in dc.Customers

where !(from o in dc.Orders

select o.CustomerID).Contains(c.CustomerID)

select c;

原文地址:https://www.cnblogs.com/xiaocaicai/p/1770597.html