I'm trying to follow the instructions on Creating an IQueryable LINQ Provider, but when I implement the classes which inherit from ExpressionVisitor as instructed I am told that ExpressionVisitor is inaccessible due to its protection level. Am I missing something incredibly basic?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

The class is sealed, stupidly enough. Use the ExpressionVisitor at the end of this post instead. I can definitely recommend that walk-through, btw, it's really comprehensive and helpful in every way.

Good luck!

link|improve this answer
Thanks! I'm on my way to IQueryable goodness, but why on earth did the MSDN article want me to inherit a class that I couldn't?! – tags2k Apr 14 '10 at 14:43
I honestly don't know, I faced the same idiocraticy when I was doing this about a year ago. Have fun building your provider! – Banang Apr 15 '10 at 9:09
What a brilliant set of tutorials - I'm on #4 and I've already got an awesome provider. I guess you just can't rely on Microsoft to produce good tutorials themselves! – tags2k Apr 16 '10 at 15:37
I fully agree, Matt rocks! What are you building a provider for, if I may ask? – Banang Apr 16 '10 at 20:08
2  
You probably already know this but just in case you don't, .NET 4.0 now exposes the MS implementation of ExpressionVisitor and have extended it somewhat. – Tim Jarvis Jul 9 '10 at 2:08
show 1 more comment
feedback

In .NET 4.0, the Microsoft-provided implementation of ExpressionVisitor (built into the BCL) is no longer sealed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.