This is a late answernanswer, but I heard Jeff/Joel talk about this on the podcast today, so I checked out the question. I see that there's no LINQ-to-SQL answer given, so I'll supply one. I thought I recalled SO was using LINQ-to-SQL, but maybe it was ditched -- who knows. Anyway, here's the same thing in LINQ-to-SQL.
var inValues = new [] { "ruby","rails","scruffy","rubyonrails" };
var results = from tag in Tags
where inValues.Contains(tag.Name)
select tag;
That's it. And, yes, LINQ already looks backwards enough, but the Contains clause seems extra backwards to me. When I had to do a similar query for a project at work, I naturally tried to do this the wrong way by doing a join between the local array and the SQL Server table, figuring the LINQ-to-SQL translater would be smart enough to handle the translation somehow. It didn't, but it did provide an error message that was descriptive and pointed me towards using Contains.
Anyway, if you run this in the highly recommended LINQPad, and run this query, you can view the actual SQL that the SQL LINQ provider generated. It'll show you each of the values getting parameterized into an IN clause.
