In my previous post, one reader commented that the proposed LINQ query would be utterly slow so I did a quick unscientific showdown.
In the left corner: the query returning complex objects from anonymous types:var q = from o in ctx.Orders where o.CustomerID == id select new { Detail = o.Order_Details, CustomerID = o.CustomerID, OrderDate = o.OrderDate, OrderID = o.OrderID, ShippedDate = o.ShippedDate, ShipCity = o.ShipCity...
Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.