2
votes
1answer
58 views
Is this is an ExpressionTrees bug? #4
This is not "close to real" situation, but it shows that Expressions API doesn't look for operators in the destination type of conversion if it founds the suitable operator in the …
2
votes
0answers
56 views
Is this is an ExpressionTrees bug? #3
Expressions class should be more accurate while searching for user-defined operators?
sealed class Foo
{
// just the private static method!
private static int op_Implicit() { …
1
vote
3answers
45 views
Need help building LINQ to SQL Expression
I need to translate the following Code to an Expression and I will explain why:
results = results.Where(answer => answer.Question.Wording.Contains(term));
results is IQueryab …
5
votes
2answers
96 views
Is this is an ExpressionTrees bug? #2
Looks like ExpressionTrees compiler should be near with the C# spec in many behaviors, but unlike C# there is no support for conversion from decimal to any enum-type:
using System …
10
votes
3answers
157 views
Is this is an ExpressionTrees bug?
using System;
using System.Linq.Expressions;
class Program
{
static void Main()
{
Expression<Func<float, uint>> expr = x => (uint) x;
Func<float,uin …
1
vote
1answer
68 views
Can’t get operator overloading to work with Linq Expression Trees
I am creating Linq expression trees from F# that operates on a custom datatype I have. The type is a very simple discriminated union that has the usual arithmetic operators overloa …
1
vote
2answers
24 views
How do I view an expression tree with LINQPad?
Maybe I'm missing something obvious, but I how can I view the expression tree for this query:
from word in "The quick brown fox jumps over the lazy dog".Split()
orderby word.Lengt …
1
vote
2answers
46 views
How to select/filter against substring in a list of strings?
I have a LINQ result set I'm trying to filter in a strange and peculiar way.
List<string> MyDomains = [Code to get list];
var x = (from a in dc.Activities
where a.Ref …
7
votes
9answers
244 views
Whats a good use case for .net 4.0 Expression Trees?
This one was inspired by my language-guru co-worker who can't seem to find a good use for them, and after a few lame attempts of my own, I'd have to agree.
Now I know these conce …
2
votes
1answer
87 views
Generated methods for polynomial evaluation
I'm trying to come up with an elegant way to handle some generated polynomials. Here's the situation we'll focus on (exclusively) for this question:
order is a parameter in gener …
1
vote
5answers
140 views
Bit Curious to understand Expression Tree in .NET
I have read several articles and several “stackoverflow” posts about expression tree.
It is beating my brain to understand.
Questions:
1)Like DOM (Document Object Model ),Is it …
3
votes
2answers
143 views
Refactoring Func<T> into Expression<Func<T>>
I have a method that currently takes a Func<Product, string> as a parameter, but I need it to be an Expression<Func<Product, string>>. Using AdventureWorks, here …
0
votes
2answers
55 views
Linking a .NET Expression Tree into a new assembly
I'm trying to write my own toy My Toy Language -> MSIL compiler in order to get a better understanding of how compilers work. I got the parsing and lexing working, I have built the …
0
votes
2answers
25 views
Avoiding unnecessary boxing in DLR
I'm playing with DLR to get a better understanding of it. I'm not completely familiar yet with all its concepts and its terminology so sorry for any terminological or conceptual m …
2
votes
2answers
54 views
Retrieving an Expression from a property and adding it to an expression tree
I've tried to simplify this example, as the actual code I'm playing with is more complex. So while this example may seem silly, bear with me. Let's say I'm working with the Adven …
