var query =
from c in dc.Customers
where !(from o in dc.Orders
select o.CustomerID)
.Contains(c.CustomerID)
select c;
I took this from this link, Marco Russo's blog
A C#, iOS programmer by trade from Melbourne, Australia.
Content provided here are generic in nature and do not represent any form of current work.
var query =
from c in dc.Customers
where !(from o in dc.Orders
select o.CustomerID)
.Contains(c.CustomerID)
select c;
| My web portal |
| Scott Gu's blog |
| Rob Conery |
| Vikram Lakhotia's blog |
| Stack Overflow |
| Ray Wenderlich - iOS |
| MSDN - Visual C Sharp |
| 101 LINQ Samples |
| MVC |
| jQuery |