0
votes
2answers
27 views
Use LINQ to omit some entries in the value part of a dictionary and project this into a new dictonary maintaing original keys.
Hi All,
I have a generic dictonary which is templated in the following manner:
Dictionary<object, IList<ISomeInterface>> dictionary1 = new Dictionary<object, …
1
vote
1answer
86 views
Weak event handler model for use with lambdas
OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the ' …
10
votes
8answers
415 views
When is it too much “lambda action”?
Hi everybody :)
I often find myself using lambdas as some sort of "local functions" to make my life easier with repetetive operations like those:
Func<string, string> GetTe …
0
votes
3answers
96 views
python reduce error?
The following is my python code:
>>> item = 1
>>> a = []
>>> a.append((1,2,3))
>>> a.append((7,2,4))
>>> sums=reduce(lambda x:abs(item …
3
votes
1answer
56 views
Are there any “simple” explanations of what procs and lamdbas are in Ruby?
Are there any "simple" explanations of what procs and lamdbas are in Ruby?
1
vote
2answers
33 views
How to order by multiple columns using VB.Net lambda expressions
I've done a brief search of this site, and googled this, but can't seem to find a good example. I'm still trying to get my head around the whole "Lambda Expressions" thing.
Can an …
1
vote
2answers
36 views
Get the property name from delegate i => i.Name
Hi,
is there any way in .Net 2.0 to retrieve a property name from delegate?:
i => i.Name
When I call:
var property = MyMethod(i => i.Name);
I want MyMethod to return string "Nam …
2
votes
3answers
66 views
Generic List RemoveAll and lamda expressions
I'm clearly missing something here... I have a generic list of objects and I'm trying to use a lambda expression to remove items. When I use the code posted below I get the followi …
0
votes
0answers
67 views
How can I simply return a lambda-type expression from a property or method?
How can I simply return a lambda-type expression from a property or method call?
This is what I am trying to accomplish, something like this:
public static Expression<Func&l …
0
votes
4answers
91 views
LINQ: Help with linq query and contains for an IEnumerable<string>?
Hi there,
Can anyone help?
I have a linq query which is embedded inside a extension method, it was working as v.RentalStatus was a String. I am now using a Group on my original q …
1
vote
2answers
92 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 …
1
vote
1answer
75 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
124 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" …
1
vote
3answers
65 views
Check if property is null in lambda expression
I have a list of objects that I am trying to bind to a listview. I am sorting by two properties. The problem exists whereby some records may not have one of the properties. This is …
0
votes
3answers
66 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 …
