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...