This really bothers me, as I have a completely different way to choose two methods here:
var emailsToSend = db.emailQueues.Where( e => e.sent == false ).Take(5); var emailsToSend2 = from e2 in db.emailQueues .Take(5) .Where( e => e.sent == false ) select e2;
Both of them seem to do the same, but I prefer the syntax of the first method. It is easier to remember.
source share