vote up 1 vote down star
1

I have recently written a dynamic querying tool using expression trees and as I went the power of expression trees began to dawn on me. My querying tool could also form the basis of a reporting tool, a dynamic decision engine and maybe other cases where you need to work with dynamic objects in abstract ways.

The process has been painful (recursive calls to generic methods by reflection - ugh) so I am wondering whether anyone has created a generic library that might harness the power of expression trees to accomplish some of these kinds of tasks? I have seen PredicateBuilder but does anyone know of any others?

flag

51% accept rate

4 Answers

vote up 0 vote down

Have you looked at LINQ and the IQueryable interface? That's how they implemented LINQ to SQL, etc.

link|flag
vote up 2 vote down

Generic operators (in MiscUtil) is a pretty well utilised bit of code based on expression trees; very simple, but very versatile. Some other ideas:

(lots of others)

link|flag
vote up 0 vote down

Have you looked at the DLR? I don't know much about it in detail, but my understanding is that the expression-tree mechanism which is behind the scenes in Linq-to-SQL has effectively been published in the DLR.

link|flag
No, this is not true. It looks similar, but the DLR is by far inferior. – leppie Dec 4 '08 at 10:05
DLR trees share a lot of common ground with Expression, and IIRC they are a bit more merged in .NET 4.0 CTP. – Marc Gravell Dec 4 '08 at 10:15
vote up 0 vote down

Check out LINQExtender

link|flag

Your Answer

Get an OpenID
or

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