show/hide this revision's text 2 clarify

I prefer to use the latter (sometimes called "query comprehension syntax") when I can write the whole expression that way.

var titlesQuery = from e in entries
                  where e.Approved
                  orderby e.Rating
                  select e.Titles;

var title = titlesQuery.FirstOrDefault();

As soon as I have to add (parentheses) and .MethodCalls(), MethodCalls(), I stopchange.

When I use the former, I usually put one clause per line, like this:

var title = entries
	.Where (e => e.Approved)
	.OrderBy (e => e.Rating)
	.Select (e => e.Title)
	.FirstOrDefault();

I find that a little easier to read.

show/hide this revision's text 1

I prefer to use the latter (sometimes called "query comprehension syntax") when I can write the whole expression that way. As soon as I have to add (parentheses) and .MethodCalls(), I stop.

When I use the former, I usually put one clause per line, like this:

var title = entries
	.Where (e => e.Approved)
	.OrderBy (e => e.Rating)
	.Select (e => e.Title)
	.FirstOrDefault();

I find that a little easier to read.