Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
5answers
1k views

Curiosity: Why does Expression<…> when compiled run faster than a minimal DynamicMethod?

I'm currently doing some last-measure optimizations, mostly for fun and learning, and discovered something that left me with a couple of questions. First, the questions: When I construct a method ...
20
votes
3answers
7k views

Combining two expressions (Expression<Func<T, bool>>)

I have two expressions of type Expression<Func<T, bool>> and I want to take to OR, AND or NOT of these and get a new expression of the same type Expression<Func<T, bool>> ...
20
votes
4answers
7k views

What's the difference between anonymous methods (C# 2.0) and lambda expressions (C# 3.0)?

What is the difference between anonymous methods of C# 2.0 and lambda expressions of C# 3.0.?
16
votes
4answers
1k views

Sequence points and partial order

A few days back there was a discussion here about whether the expression i = ++i + 1 invokes UB (Undefined Behavior) or not. Finally the conclusion was made that it invokes UB as the value of ...
11
votes
3answers
3k views

ublas matrix expression tutorial/examples

I am trying to implement certain matrix operations but I am lost in the internals of ublas library. is there a resource such as tutorial or an example on how to implement new ublas matrix expressions? ...
11
votes
7answers
18k views

Sort a List<T> using query expressions - LINQ C#

I have a problem using Linq to order a structure like this : public class Person { public int ID { get; set; } public List<PersonAttribute> Attributes { get; set; } } public class ...
11
votes
6answers
6k views

What's so great about Func<> delegate?

Sorry if this is basic but I was trying to pick up on .Net 3.5. Question: Is there anything great about Func<> and it's 5 overloads? From the looks of it, I can still create a similar delgate on ...
8
votes
2answers
846 views

RDLC Expression Extension Methods

Is it possible to write extension methods for expressions behind RDLC fields? For example, let's say that I have a DateTime field in my datasource that may either have a valid value or may be null. ...
8
votes
8answers
837 views

Generic Declarative Expression Builder in PHP

Folks, I'm looking to build a piece of PHP5 UI that I'm pretty sure is common to a bunch of applications. Basically, it's an expression builder that allows users to specify expressions combined ...
7
votes
3answers
168 views

C# Get the name of a method using an expression

I know there are a few answers on the site on this and i apologize if this is in any way duplicate, but all of the ones I found does not do what I am trying to do. I am trying to specify method info ...
7
votes
4answers
1k views

The type arguments cannot be inferred from the usage. Try specifying the type arguments explicitly

Could someone please clarify something for me. In my asp.net mvc 2 app, I've got a BaseViewModel class which includes the following method: public virtual IDictionary<string, object> ...
7
votes
2answers
398 views

C# negate an expression

I'm seeking for a way to negate an expression used to filter IQueryable sequences. So, I've got something like: Expression<Func<T, bool>> expression = (x => true); Now I wish to ...
7
votes
5answers
3k views

BASH Arithmetic Expressions

I had used several ways to do some simple integer arithmetic in BASH (3.2). But I can't figure out the best (preferred) way to do it. result=`expr 1 + 2` result=$(( 1 + 2 )) let "result = 1 + 2" ...
7
votes
3answers
9k views

LINQ Expression to return Property value?

I'm trying to create a generic function to help me select thousands of records using LINQ to SQL from a local list. SQL Server (2005 at least) limits queries to 2100 parameters and I'd like to select ...
6
votes
3answers
153 views

Temporal Expression library in .NET

Does anyone know of a library to handle events and recurring events likes the temporal expression libraries that exist for ruby like Runt (http://runt.rubyforge.org/) or TExp ...
6
votes
4answers
275 views

Evaluate beyond one level within Hold in Mathematica

The mathematica documentation on Evaluate at possible issues says: Evaluate works only on the first level, directly inside a held function Why does Mathematica have this limitation? So if I ...
6
votes
6answers
164 views

What's the difference between those PHP if expressions?

What's the difference between those PHP if expressions!? if ($var !== false) { // Do something! } if (false !== $var) { // Do something! } Some frameworks like Zend Framework uses the ...
6
votes
2answers
612 views

Replacing parameters in a lambda expression

I had a part of code that takes in lambda expressions at runtime, which I can then compile and invoke. Something thing; Expression<Action<Something>> expression = (c => c.DoWork()); ...
6
votes
4answers
210 views

Are named functions underrated in JavaScript?

Taking the jQuery framework for example, if you run code like this: $(document).ready(function init() { foo.bar(); }); The stack trace you get in Firebug will look like this: init() anonymous() ...
6
votes
4answers
175 views

reusable condition/expression classes

I have needed in several occasions some classes to represent and manipulate conditions (typically in a UI so the user builds a query by combining different condition types and then the code can ...
6
votes
4answers
2k views

Expression.Or, The parameter 'item' is not in scope

I am trying to write a static function to Or two expressions, but recieve the following error: The parameter 'item' is not in scope. Description: An unhandled exception occurred during the ...
5
votes
4answers
171 views

Perl operator: $|++; dollar sign pipe plus plus

I'm working on a new version of an already released code of perl, and found the line: $|++; AFAIK, $| is related with pipes, as explained in this link, and I understand this, but I cannot figure ...
4
votes
1answer
30 views

Can I parameterize the property name of a PropertyExpression using LINQ Expressions?

Supposing I have the following LambdaExpression: var itemParam = Expression.Parameter(typeof(Thing), "thing"); var someValue = "ABCXYZ123"; // value to compare LambdaExpression lex = ...
4
votes
4answers
194 views

The binary operator Multiply is not defined for the types 'System.Int32' and 'System.Double'.

Why the following code throws an exception at runtime, whereas doing it in the traditional way compiles without problem? var left = Expression.Constant(25d); var right = Expression.Constant(20); // ...
4
votes
1answer
98 views

Is the expression (a=b) = k UB?

Is (a = b ) = k undefined behavior if a,b and k are of int type and properly initialised? thanks
4
votes
1answer
87 views

D 2.0: Class Arguments and Declaration Definitions with “new”?

I just took a look at the Expressions grammar for D 2.0 (NewExpression) and something caught my attention: NewExpression: NewArguments ClassArguments BaseClasslistopt { DeclDefs } ...
4
votes
1answer
338 views

Create New Expression from Existing Expression

I have an Expression<Func<T,DateTime>> I want to take the DateTime part of the expression and pull the Month off of it. So I would be turning it into a Expression<Func<T,int>> ...
4
votes
2answers
376 views

Writing an XPath query to match elements based on attributes and content

I have some XML like this: <topics> <topic id="50"/> <topic id="51"/> <topic id="52"/> </topics> <discussions> <discussion type="foo">talked about ...
4
votes
1answer
455 views

How to combine two expressions: result = exp1(exp2);

As subject, how to combine two expressions into a single one for this case: Expression<Func<IEnumerable<T>, IEnumerable<T>>> exp1; Expression<Func<IEnumerable<T>, ...
4
votes
9answers
1k views

Left to right expression evaluation

In C# is it guaranteed that expressions are evaluated left to right? For example: myClass = GetClass(); if (myClass == null || myClass.Property > 0) continue; Are there any languages ...
4
votes
7answers
1k views

Evaluating expressions inside C++ strings: “Hi ${user} from ${host}”

I'm looking for a clean C++ way to parse a string containing expressions wrapped in ${} and build a result string from the programmatically evaluated expressions. Example: "Hi ${user} from ${host}" ...
3
votes
2answers
85 views

Changing a piece of code into expressions

I'm missing something and I'm not quite sure what, I don't have a lot of experience with LINQ expressions. I'm trying to change the following piece of code into expressions. MethodInfo orderByMethod ...
3
votes
5answers
77 views

How does variable assignment in an expression work?

This is a practice I've seen before, but not very often: A variable is assigned to a value at the same time the value itself is evaluated (or is it the expression itself that is evaluated?). Example: ...
3
votes
2answers
69 views

How do I store a reference to a generic type created based on an expression passed to the method?

I have the following method, which returns a generic object of type INamedProperty<TReturn> based on the return type of a defined expression. I need to store a reference to the object that is ...
3
votes
1answer
445 views

preg_match and (non-English) Latin characters?

I have a XHTML form where I ask people to enter their full name. I then match that with preg_match() using this pattern: /^[\p{L}\s]+$/ On my local server running PHP 5.2.13 (PCRE 7.9 2009-04-11) ...
3
votes
3answers
189 views

Where is “code as data” in DLR expression?

I have this c# code: Console.Writeline("Hello World"); If I want to do this with DLR expression it looks something like this: MethodInfo method = typeof(Console).GetMethod("WriteLine", new Type[] ...
3
votes
2answers
305 views

Cache compile from Expression<Func<T>>

I have a class that I use for the checking method arguments, which you call in the form: public void SomeMethod(string anArg) { Ensure.ArgumentNotNull(() => anArg); } If the argument is null ...
3
votes
3answers
168 views

Making a value type behave as a reference type using Expression<Func<T>>

We know that int is a value type and so the following makes sense: int x = 3; int y = x; y = 5; Console.WriteLine(x); //says 3. Now, here is a bit of code where we want to for lack of a better ...
3
votes
1answer
961 views

Lambda expressions - set the value of one property in a collection of objects based on the value of another property in the collection

I'm new to lambda expressions and looking to leverage the syntax to set the value of one property in a collection based on another value in a collection Typically I would do a loop: class Item { ...
3
votes
4answers
203 views

C# expression evaluates to a namespace

MSDN docs state "An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace." Could someone please explain what it means for an expression to evaluate ...
2
votes
2answers
60 views

Books and tutorials about Expressions

As my coding skills increase in C# and F# I've been finding myself using a lot more LINQ and Expression tree's. However, the best online documentation from Microsoft I can find on Expressions is their ...
2
votes
3answers
108 views

Space in string allowed, but not at first or last position

For a form validation I've to check input with javascript for valid names The string has to fit the following pattern. I may not start or end with a space It may contain spaces It may contain ...
2
votes
0answers
63 views

The dreaded “parameter was not bound in the specified LINQ to Entities query expression” exception

I am trying to get an understanding of expressions. I am hitting the dreaded "parameter was not bound in the specified LINQ to Entities query expression" exception. I have seen Skeet answer this ...
2
votes
3answers
160 views

Expression<Func<TModel,string>> to Expression<Action<TModel>> “Getter” to “Setter”

I'm new to expressions, and i'd like to know how if it's in any way possible to convert my expression Let's say in this example my TModel is of type Customer, and assigned it somewhere like this: ...
2
votes
3answers
112 views

C# What construct am I Looking for Lamba / Expression / Func / Reflection for runtime property substitution?

I've a method on a generic base class that I want to execute for all superclasses of it The logic is something like: BuildAverageDateStats(List<type> items, DateProperty1 exp, DateProperty2 ...
2
votes
2answers
93 views

Selecting column using REGEXP in MySQL

So I have a table with many columns. Suppose that each column contains similar keywords, differing only by a few. I want to select these columns based on their similar keywords. At first, this was my ...
2
votes
1answer
57 views

Linq Expressions does not find a public method… :-/

I write a expression that will test if a property(enum) of a object have, or have not some flags set. The code bellow test if the validity of an object "contains" or not Monday, using the HasFlag ...
2
votes
3answers
89 views

Conditional Regex searches

I'm attempting to create a Regular Expressions code in Java that will have a conditional search term. What I mean by this is let's say I have 5 words; tree, car, dog, cat, bird. Now I would like the ...
2
votes
3answers
106 views

PHP regular expression allowing at most 1 '.' or '_' character in string, and '.' or '_' can't be at beginning or end of string

I am writing a PHP validation for a user registration form. I have a function set up to validate a username which uses perl-compatible regular expressions. How can I edit it so that one of the ...
2
votes
0answers
201 views

SSRS Reports render correctly via Web, but render WITHOUT evaluating expressions when using WinForms ReportViewer in C# app

Hello there, Long time listener - first time caller! I've got an issue where a .RDL report (remote processing) running on SSRS 2005 will render with expression evaluated when viewed via web ...

1 2 3 4 5