I'm using the SharePoint Client Object Model to query lists in Sharepoint and need to create the Linq queries dynamically in a helper assembly.
How do I create the following from a list<string> of column names containing "Id","Title","LinkFileName","Status" ?
context.Load(listItems, items => items.Include(
item => item["Id"],
item => item["Title"],
item => item["LinkFilename"],
item => item["Status"]
));