Expression Trees are an abstract representation of code in a tree structure where each node of the tree represents a programming construct (conditional, assignment, method call, etc.)

learn more… | top users | synonyms

0
votes
1answer
13 views

How to create Expression Tree for multiple column OrderBy Expression

I have create an orderby expression for my EF generic Repository as following string command = orderByDesc ? "OrderByDescending" : "OrderBy"; var type = typeof(T); var property = ...
6
votes
1answer
141 views

Expression evaluation tree in Haskell

In an exam today I was asked to create an expression evaluation tree in Haskell. Usually the answer is as simple as: data Expr = Value Integer | Add Expr Expr | Sub Expr Expr ...
0
votes
0answers
20 views

Parse Math Expression in PHP

I'm currently trying to parse math expression into expression tree. But I'm stuck on the stage where I need to implement functions and negates. I don't understand logic to do it using Shunting-Yard ...
0
votes
2answers
31 views

Expression Tree how do I capture a local variable

I'm currently working towards creating dynamic expressions and I have the following scenario, which I'd like help to achieve. given: public class planet { public string name { get;set; } } ...
1
vote
0answers
42 views

Expression Trees and Joins

Expression<Func<Account, IEnumerable<Attachment>>> attachments = t => attachmentBuilder.Populate("COMPANYNAME", t.AccountID.ToString()); var q = cxt.Accounts.Select(e => new ...
1
vote
2answers
87 views

What's faster: expression trees or manually emitting IL

Is there a performance difference between creating a method emitting IL directly, as opposed to building an expression tree?
2
votes
2answers
64 views

Expression tree condition conversion with selector

I have an entity class like public class BookPage { public int PageIndex { get; set; } } then I have an expression: Expression<Func<int, bool>> pageIndexCondition = idx => idx ...
-1
votes
3answers
70 views

Call Func<> with argument of type object

I have (for instance) a Func<int, int> which I want to call as usual, except that the parameter is of type object rater than int. I only know the exact type of the Func and the argument at ...
4
votes
3answers
113 views

Building a custom predicate to act as a filter using a foreach loop

I need to filter a list of documents by passing them to a custom filter that I'm struggling to build dynamically using a foreach loop : var mainPredicate = PredicateBuilder.True<Document>(); ...
0
votes
2answers
43 views

Reading Properties of an Object with Expression Trees

I want to create a Lambda Expression for every Property of an Object that reads the value dynamically. What I have so far: var properties = typeof (TType).GetProperties().Where(p => p.CanRead); ...
4
votes
2answers
184 views

Find the Any method on an array of strings

Given string[] stringArray = { "test1", "test2", "test3" }; then this returns true: bool doesContain = stringArray.Any(s => "testa test2 testc".Contains(s)); My ultimate goal is to make a ...
4
votes
1answer
52 views

MethodCallExpression.Method always returns the root base class's MethodInfo

Here's a simple application that prints the method signature of a MethodCallExpression: using System; using System.Linq; using System.Linq.Expressions; class A { public virtual void Foo() { } } ...
1
vote
2answers
57 views

Applying expression tree for List through LINQ

I Want to apply dynamic project for my List Collection. User will be selecting the columns which are noting but properties of my List. I want to get subset of columns from LINQ Statement. I want to ...
2
votes
4answers
82 views

How do you call a constructor via an expression tree on an existing object?

I'm trying to call the deserialization constructor for an object that already exists. How do I do that with expression trees? I tried: // Create an uninitialized object T graph = ...
-7
votes
0answers
59 views

Good book for learning expression trees? (Yes, I've searched SO for this!) [closed]

The question is at the bottom, but I've provided some information if you want to know more about what I'm working on and what my need for the book is. I'm making a program whose job is to solve ...
0
votes
1answer
20 views

Lambda compilation throws “variable '' of type '' referenced from scope '', but it is not defined”

When I attempt to compile the lambda shown below, it throws: variable 'model' of type 'System.Collections.Generic.IEnumerable`1[WheelEndCatalogKendo.Models.SapBasicData]' referenced from scope '', ...
-5
votes
1answer
56 views

Output of C program [duplicate]

int a[]={10,20,30,40}; int x=0; int v=a[++x]+ ++x + a[--x]; printf("%d",v); What will be the output of this program?? Completely confused with the output. No way it is going to be done according ...
0
votes
1answer
21 views

expression tree evaluation java.lang.NumberFormatException java

I've created an expression tree with three classes (one for the structure of the tree which evaluates the expression and also gives the postfix and infix notation of it(Expr), the other one just ...
0
votes
0answers
51 views

Computing an expression tree recursively

I built a function that takes my expression tree and computes the values. My leaf nodes are either number or letters as keys, but have integers as their values. When I run the program, I get -74 as my ...
5
votes
2answers
132 views

Is Expression Trees a core language feature of C#?

Are Expression Trees a core language feature or a feature of the BCL object/library? Is it something that you can't build without the core language features of C#?
0
votes
2answers
51 views

How to pass runtime argument variable in Expression.Call? [duplicate]

I'm missing something trivial here. Say I have a method like this: abstract class C { public static void M(Type t, params int[] i) { } } I'm learning expression trees and I need to ...
0
votes
2answers
158 views

Convert Func<Type, object> expression to Func<T> where T is generic constraint

I have this static function public static object Create(Type t) { //unimportant } I don't have control on the above function above, so I cant alter it. The problem is it's not generic, so I ...
2
votes
1answer
67 views

“Incorrect number of parameters supplied for lambda declaration” [duplicate]

When I have this, public static object Create() { return new object(); } this works: var m = typeof(Class).GetMethod("Create"); var e = Expression.Call(m); Func<object> f = ...
0
votes
1answer
33 views

Linq to Entities Expression Tree - Comparing String Values as Integers

How can I build a SQL Server compatible expression tree that can compare a string as if it were an integer? My table contains phone numbers (e.g. "01234000000") and I want my dynamically created ...
0
votes
0answers
35 views

Performance Analysis with PerfView

I just have created a simple console application emitting a bunch of code in memory. I’m trying to gather useful data using PerfView. When I want to drill down after the last static compile-time ...
47
votes
3answers
1k views

Expression tree differences between C# and VB.Net

I have a library working on expression trees. The library need to work with both C# and VB.Net Noticed some differences between the languages on how the expression trees are constructed String ...
0
votes
1answer
78 views

How do you know when a variable/property has been closed over?

Given an expression like: Int32 five = 5; Express(num => num == five); where Express is something like void Express(Expression<Predicate<Int32>> predicatesGonnaPredicate) { ...
3
votes
5answers
229 views

Is there a way to create a delegate to get and set values for a FieldInfo?

For properties there are GetGetMethod and GetSetMethod so that I can do: Getter = (Func<S, T>)Delegate.CreateDelegate(typeof(Func<S, T>), ...
1
vote
1answer
60 views

Create Func<T, bool> from MemberExpression and Constant

I don't do expression tree work enough to get this working... Essentially what I want to create is m.MyProperty == 1, to be used in a method that takes Func<T, bool>. I have a MemberExpression ...
0
votes
1answer
108 views

Finding method call in expression tree / iterating expression tree

I need to find all calls to particular method in expression tree which can be very complex. Currently I have simple recursive code which checks for BinaryExpression, ConditionalExpression etc and of ...
1
vote
0answers
47 views

How to build new expression to test out result of previous expression without compiling?

//IsCellDataValid Method returns bool MethodInfo isCellDataValidMethod = this.GetType().GetMethod("IsCellDataValid", BindingFlags.NonPublic | BindingFlags.Instance); var IsCellDataValidMethodCall = ...
0
votes
1answer
100 views

Can't build lambda expression tree

Trying to create the following expression using expression trees (would like help) List<string> lstName = dt_Name.Select(y => y.Name); List<string> lstLabName = dt_Label.Select(x ...
2
votes
2answers
71 views

Can I specify Queryable.GroupBy (instead of Enumerable.GroupBy) in query expression syntax

When I write a Group By in query expression syntax, the compiler automatically picks Enumerable.GroupBy as my intended tareget method and I get an IEnumerable back instead of an IQueryable. That ...
1
vote
2answers
156 views

Dynamically query entities from Entity Framework for association to primary Entity

I know the title wasn't the greatest, but here is what I actually want to accomplish. I have a details view that represents Entity1 and its associations. I am capturing the property names and values ...
1
vote
1answer
40 views

How do I call a method from within a linq query that is retrieving from an Entity Framework model

I have the following code return (_entities.Users.Select(profile => new ProfileUserListItemDto { Email = profile.Email, FirstName = ...
1
vote
2answers
80 views

Cast IEnumerable into Array in Expression Tree Func

I have an expression that has the following structure. I get it from a Expression.ArrayIndex, so I cannot change it: Expression<Func<TModel[], TProperty>> expression Afterwards I'm ...
2
votes
1answer
54 views

Finding the size of a NewArrayExpression

When trying to parse an expression tree using the following: private static XElement Parse(NewArrayExpression newArray) { IEnumerable<XElement> items = newArray.Expressions ...
2
votes
0answers
73 views

How do I 'dereference' a closure?

So I'm parsing an expression tree, but I've come across an anomaly. Given the expression: Int32 five = 5; var query = Z<MyPersonTable>.QueryVia<IPersonQuery>() .Where(person => ...
0
votes
0answers
50 views

oData string to LINQ expression serliazer

I have checked out Linq2Rest and I am still not quite sure if it's the right tool for me. I need something that will serialize a LINQ expression tree to OData and vice versa. I just want a light ...
0
votes
1answer
55 views

Convert an expression tree back to string form using only depth first and/or breadth first traversal

I'm working on a genetic programming problem that involves an expression tree. The tree data structure I'm using provides only accessors in terms of depth first and breadth first traversal. What's an ...
2
votes
1answer
100 views

Generic Expression tree with 'OR' clause for each supplied property

I have created a generic search extension method for IQueryable that enables you to search for a single property to see if a search term is contained within it. ...
0
votes
1answer
174 views

Generate dynamic select lambda expressions

I am somewhat new to expression trees and I just don't quite understand some things. What I need to do is send in a list of values and select the columns for an entity from those values. So I would ...
1
vote
3answers
220 views

Complex LINQ sorting using Lambda Expressions

Does anyone have/know of an IQueryable.OrderBy extension that takes an Expression (retrieved, for example, by Reflection)? I believe the function would look something like this: public static ...
0
votes
3answers
203 views

Building an indexed expression from another expression

Scenario public class Element { public int Id {get;set;} } public class ViewModel { public IList<Element> Elements{get;set;} } I have a method with a parameter of type ...
0
votes
1answer
97 views

Invoking an EF EDM function via Expression Trees

I need to build a advanced querying system , which will accept parameters and appropriately add multiple predicates using the LinqKit Predicate Builder.. Summary In the End, boils down to this. I ...
2
votes
2answers
119 views

Build IQueryable.Any with Expression Trees for LINQ queries

I'm building a SQL "WHERE" clause dynamically using the System.Linq.Expressions.Expression class. It works well for simple clauses, e.g. to add "PhaseCode = X" clause, I do the following: var ...
5
votes
1answer
154 views

Expression.Bind() - what does it actually do?

So I've been playing with dynamically building expression trees lately and came across this method, which seems kinda odd. At first I thought "oh cool this is exactly what I need" after constantly ...
2
votes
1answer
140 views

Construct a LINQ GroupBy query using expression trees

I have stuck on this problem for a week and no solution found. I have a POCO like below: public class Journal { public int Id { get; set; } public string AuthorName { get; set; } public ...
4
votes
3answers
161 views

Expression tree and AND condition

i'm trying to build a filter expression to filter data from the database. I've wrote the following extension to build expression dynamically depending on the selected filter parameters: public ...
5
votes
1answer
326 views

Convert LINQ Expression to SQL Text without DB Context

Either LINQ to SQL or LINQ to Entities already have the ability to convert LINQ into a SQL text string. But I want my application to make the conversion without using the db context that both those ...

1 2 3 4 5 17