Return to Snippet

Revision: 34744
at October 27, 2010 23:57 by housecor


Initial Code
from c in context.Contacts
						select new {c.FirstName, c.LastName,
							StreetsCities = from a in c.Addresses select new { a.Street1, a.City }
						}

Initial URL


Initial Description
Uses a nested query to prject values from an entity collection.

Initial Title
Project values from an EntityCollection in LINQ

Initial Tags
query

Initial Language
C#