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).
I was in the similar situation, then I added the following line..
using System.Linq;
When I run into this kind of problem I switch my coding style a little:
var testDocuments = (from u in db.TestDocuments
orderby u.WhenCreated descending
select u).
Translates into
var testDocuments = db.TestDocuments.OrderBy(u => u.WhenCreated).
And assuming the Linq object is valid it will pull up the intellisense.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With