Tag Archives: AST

Linq provider : an attempt… part 5

Improving the toolbox : building our own expression tree visualizations In the last two posts, I included sample visualizations of expression trees. I’ve built these using a visitor pattern, that produces HTML markup. This is a good example of the … Continue reading

Posted in LINQ | Tagged , , , , , | Comments Off

Linq provider : an attempt… part 4

Using the Visitor pattern to manipulate expression trees In the previous posts of this series, I started to describe a partial implementation of a Linq provider. The aim of this provider is to get data from a service, and in … Continue reading

Posted in LINQ | Tagged , , , | Comments Off

Linq provider : an attempt… part 3

Finally doing something In the previous post of this series, I introduced the first classes implied in setting-up the Linq provider : QueryableDummyData and DummyQueryProvider, but these classes weren’t doing much of the real work. We were finally getting to … Continue reading

Posted in LINQ | Tagged , , , | Comments Off

Linq provider : an attempt… part 2

Setting up the scene To build my sample provider, I’ll be querying a sample Web Service. First, Let’s see the big picture of what I’m trying to do : DummyWs : my sample provider will be built against a web … Continue reading

Posted in LINQ | Tagged , , , | Comments Off

Linq provider : an attempt… part 1

The call of the AST I have this will, for quite a long time, to try to implement a basic LINQ provider. The general idea is to play with AST (Abstract Syntax Tree) manipulations, using my language of choice : … Continue reading

Posted in LINQ | Tagged , , , | Comments Off