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?