Can anyone tell me why I do not get intellisense with this code:
var testDocuments = (from u in db.TestDocuments
orderby u.WhenCreated descending
select u).
but I do get intellisense with this code:
var testDocuments = (from u in db.TestDocuments
orderby u.WhenCreated descending
where 1==1
select u).