LINQ in Action roller

Help needed with converting LINQ query into a Lambda Expression.

I have a query in LINQ like this: Code Snippet var organisations = from o in _cx.Organisations join oa in _cx.OrganisationAddresses on o.RecID equals oa.OrganisationID join ot in _cx.OrganisationTypes on oa.AddressTypeID equals ot.RecID join a in _cx.Addresses on oa.AddressID equals a.RecID select new { o.RecID, o.Name, o.Created, ot.Description, a.Street, a.Number, a.NumberAddition, a.Zipcode, a.City }; Now how would I get this into a workable Lambda expession? I need to do the upper query but with Read More...
Published Monday, July 28, 2008 9:19 PM by MSDN Forums: LINQ Project General
Anonymous comments are disabled

Featured Item

This Blog

Sponsoring

Syndication