Going backwards from SQL to LINQ2SQL is sometimes quite simple. The following statement
SELECT user FROM users WHERE lastname='jones'
translates fairly easily into
from u in users where u.lastname='jones' select u
But how do you get the following SQL generated?
SELECT user FROM users WHERE lastname IN ('jones', 'anderson')