"Simplicity can't be bought later, it must be earned from the start" -- DB
from c in Customers join o in Orders on new {c.CompanyID, c.CustomerID} equals new {o.CompanyID, o.CustomerID}
from Customers as c join Orders as o on (c.CompanyID,c.CustomerID) = (o.CompanyID,o.CustomerID)
No comments:
Post a Comment