Hi ,
I have this code using client object model
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<view>somefiltercalusexml</view>"
ListItemCollection collListItem = currentList.GetItems(camlQuery);
context.Load(collListItem, items => items.Include(item => item["Column1"], item => item["Column2"], item => item["Column3"]));
I want to replace "column1", "column2", "Coumn3" with other fields dynamically. How can I do that?
Manvir