I am working through the LINQ 101 examples and have found another bug,
on SelectMany From Assignment. Can anybody tell me what the correct
syntax should be :
var orders =
from c in customers
from o in c.Orders
total = o.Total
where total >= 2000.0M
select new {c.CustomerID, o.OrderID, total};
*** Sent via Developersdex http://www.developersdex.com ***
on SelectMany From Assignment. Can anybody tell me what the correct
syntax should be :
var orders =
from c in customers
from o in c.Orders
total = o.Total
where total >= 2000.0M
select new {c.CustomerID, o.OrderID, total};
*** Sent via Developersdex http://www.developersdex.com ***
Comment