1
vote
1answer
65 views
Troubles creating a proper lambda expression…
This is the code I need to alter:
var xParam = Expression.Parameter(typeof(E), typeof(E).Name);
MemberExpression leftExpr = MemberExpression.Property(xParam, this._KeyProperty);
E …
1
vote
2answers
98 views
How to populate IEnumerable in Lambda expression?
I just cannot get this to work, would appreciate if someone can help.
So I get back an XML result from a database which looks like:
<matches>
<issuer client_name="MTR" …
0
votes
3answers
39 views
XElement.Elements() extension method?
Hello all
I have an XML file that is loaded into an XElement. I want to count the number of PollEvent children that both exist and that satisfy some conditions. I have got the c …
1
vote
0answers
21 views
Why isn’t the Ruby 1.9 lambda call possible without the dot in front of the parens?
I checked out the latest Ruby version, to play a bit with the latest changes. The first thing I tried to do was call a Ruby lambda/block/proc just like you'd do with a Python calla …
4
votes
1answer
104 views
C#: Getting Names of properties in a chain from lambda expression
I'm developing a API that uses lambda expressions to specify properties. I'm using this famous piece of code similar to this one (this is simplified and incomplete, just to make cl …
1
vote
2answers
58 views
dynamically create lambdas expressions + linq + OrderByDescending
how can I create a dynamic lambda expression to pass to use in my orderby function inside linq? I basically want transform "queryResults.OrderByDescending();" in "queryResults.Orde …
0
votes
4answers
67 views
Converting a Scheme expression to a string
Given an expression '(lambda (x) x) How can I translate this into a string. I thought symbol->string will do the job but no it cant not a symbol.
e.g for a macro to-string:
(to- …
0
votes
2answers
33 views
Is converting a NameValueCollection to a querystring using a c# lamdba efficient?
In researching how to convert a NameValueCollection to a querystring, I have come across different methods. I am curious if the shorter lambda syntax is as efficient as it could b …
2
votes
1answer
28 views
jQuery lambda functions
jQuery uses lambda functions extensively wherever a function is to be passed into another function. But Visual Studio 2008 would not honor break points that are set inside a JavaSc …
1
vote
5answers
85 views
C# Lambda puzzling behaviour
Func<Classification, string> test1 = c => c.Id = "x";
Func<Classification, string> test2 = c => { return c.Id = "x";};
I've worked with lambda's for nearly a y …
3
votes
10answers
226 views
lambda versus list comprehension performance
Hi,
I recently posted a question using a lambda function and in a reply someone had mentioned lambda is going out of favor, to use list comprehensions instead. I am relatively new …
1
vote
6answers
214 views
Python, lambda, find minimum
I have foreach function which calls specified function on every element which it contains. I want to get minimum from thise elements but I have no idea how to write lambda or funct …
3
votes
3answers
150 views
Tricky question about generics, inheritance and chaining
For context - read this.
Problem:
class Program
{
static void Main()
{
var b = new bar();
b.buzz().fizz().buzz().fizz(); //cool
…
0
votes
2answers
125 views
Can’t use Lambda expressions in Windows services?
I've developed a server software for .net 3.5 which I tried to convert to a windows service application. So I created a new Windows service project and added all my classes. But I …
2
votes
2answers
61 views
Create a delegate of a generic function
I'm writing some unit tests and I have a lot of functions of the form
public void SomeTestHelperMethod<TKey, TValue>(TKey key, TValue value)
which I'm calling repeatedly w …
