Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
373 views

Parsing Conditional Expressions to String

I'm looking for a way of parsing a conditional expression to a string. The best example I can think of is LINQ-to-SQL. It uses ExpressionVisitors to format "Where" clauses. Example: from a in b ...
4
votes
1answer
235 views

How to build a LambdaExpression from an existing LambdaExpression Without Compiling

I want to combine two LambdaExpressions without compiling them. This is what it looks like if I do compile them: public Expression<Func<TContainer,bool>> ...
3
votes
2answers
252 views

Visiting IEnumerable<T> children

Here what we want to do. We have data from the database that we need to format to make a report, including some calculation (Sum, Averages, and field to field calculation (ex : x.a / x.b)). One of ...
2
votes
3answers
122 views

how to evaluate an Expression inside ExpressionVisitor?

I need to use ExpressionVisitor to analyse an Expression before executing it. For my needs, i need to evaluate the right part of a Divide expression but i don't know how to do it. Here's a sample code ...
2
votes
2answers
697 views

System.Linq.Expressions.ExpressionVisitor is inaccessible due to its protection level

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 ...
1
vote
1answer
447 views

What does ExpressionVisitor.Visit<T> Do?

Before someone shouts out the answer, please read the question through. What is the purpose of the method in .NET 4.0's ExpressionVisitor: public static ReadOnlyCollection<T> ...