Return to Snippet

Revision: 34212
at October 19, 2010 11:45 by housecor


Initial Code
var q = from c in customers
            join o in orders on c.Key equals o.Key
            select new {c.Name, o.OrderNumber};

Initial URL


Initial Description


Initial Title
LINQ join to create anonymous type

Initial Tags


Initial Language
C#