Pretty useless question in the grand scheme of things, but I'm curious - what do you all use for a naming convention inside your lambda expressions?

For example:


Database.TableName.Max(x => x.DateImported);

Some common things people use at my shop are model, m, x, and one answer of "I like to name the variables as what they represent, so if I'm using a lambda on a bicycle class, I would name it either b or maybe bicycle." That's probably the 'right' answer, but humor me - what do you use and why?

link|improve this question

2  
This should be a community wiki, since there isn't really a "right" answer. – StriplingWarrior Nov 1 '10 at 16:37
+1 for asking - there aren't enough 'useless' questions on SO imho ;) – 5arx Nov 1 '10 at 16:38
feedback

7 Answers

up vote 4 down vote accepted

The first letter of the class to which the lambda refer to (c for Customer, o for Order, and so on...)

link|improve this answer
feedback

I generally use the camel-case letters (p for Person, pn for PersonNotification)

link|improve this answer
feedback

I often use a letter corresponding to what I am querying on.

If I have the following:

 IEnumerable<Product> products

and I do something like:

 products.Where( p => p.Category.Name == "Fruits");

Since I am querying on a product I use p for my lambda expression. Just a preference though.

link|improve this answer
feedback

I use the 'bicycle' naming convention. Works pretty well when you join multiple tables:

from u in db.Users
from p in db.Permissions
where p.xxx == xxx && u.yyyy == yyyy
select u;
link|improve this answer
feedback

If I can read it and understand it in a single glance, then a letter or two formed from a simple abbreviation of the related class or object.

If there are no such obvious choices, then x, y & z are fine.

If it can't be grokked at a glance, then nice understandable words.

Similarly, for lambdas themselves. For something that is general-purpose (e.g. the sort of things that you get in the Linq namespace, rather than geared at a particular domain), then λ is always a nice abbreviation. You lose the downside of single-letter parameters when you're going to read the single letter as "lambda" anyway.

link|improve this answer
Definitely +1 for using the lambda symbol. – DeadMG Nov 2 '10 at 11:28
@DeadMG, but of course it's not a symbol in the character-class sense, it's a letter. If it was a symbol then using it in a name wouldn't be allowed :) – Jon Hanna Nov 3 '10 at 1:08
feedback

I prefer the same naming convention as method parameters, makes the code more readable.

from person in context.Persons
join organization in context.Organizations
on person.organizationId equals organization.Id
select new {Person = person, Organization = organization }
link|improve this answer
feedback

I use p for no specific reason other than Visual Studio names with p and p1 and so forth when generating methods from usage.

I will only use the long names in Linq queries, where I always use the long names.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.