Hi. I have the following LINQ(working) var allDestinations = from d in db.Destinations select d; What is the LAMBDA for this if I wanted to use the shorthand? I tried: Destination allDestinations = db.Destinations.All() but this was not it? ps. at the top I created my DatabaseContext as db Thank you Sarel
Read More...